New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-hadiths

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-hadiths

A Simple SDK to use the Hadiths API effectively and efficiently

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

React-hadiths

This SDK supplies easy access to Hadiths - API resources.

Features

This is a a list of unique features this project comprise of;

  • Get all hadiths
  • Get a single hadith
  • Get hadiths by collection
  • TCategorized hadiths by categories and collection
  • Easy to search and limit the number of hadiths

How to use

Below is an example of how you can instruct your audience on installing and setting up your app. This template doesn't rely on any external dependencies or services.

  • Install NPM package

    npm install react-hadiths
    
    yarn react-hadiths
    
  • Visit to subscribe free of charge, no atm required. Hadiths API.

  • Usage Get all hadiths

     import Hadith from "react-hadiths"
         const client = new Hadith({
             apiKey: "ENTER YOUR API KEY"
         });
         client.getAlltHadiths().then((item) => 
             console.log(item)
         )
    
    

Get a single Hadith by ID

 import Hadith from "react-hadiths"
     const client = new Hadith({
         apiKey: "ENTER YOUR API KEY"
     });
     let id ="639b1ed040467f67664485cb"
     client.getHadithById(id).then((item) => 
         console.log(item)
     )

Get Hadith by collection

 import Hadith from "react-hadiths"
     const client = new Hadith({
         apiKey: "ENTER YOUR API KEY"
     });
     let collection ="Sahih Muslim"
     client.getHadithsByCollection(collection).then((item) => 
         console.log(item)
     )

Get Hadith by category and collection

 import Hadith from "react-hadiths"
     const client = new Hadith({
         apiKey: "ENTER YOUR API KEY"
     });
     let collection ="Sahih Muslim"
     let category ="Introduction"
     client.getHadithsByCategory(collection, category).then((item) => 
         console.log(item)
     )

Search for words

 import Hadith from "react-hadiths"
     const client = new Hadith({
         apiKey: "ENTER YOUR API KEY"
     });
     let search ="food"
     client.searchHadiths(search).then((item) => 
         console.log(item)
     )

Learn More

You can learn more in the Hadiths API. Visit the Github.

Keywords

https://rapidapi.com/BigYusuf/api/hadiths-api/

FAQs

Package last updated on 17 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts