Skip to content

wickstudio/Islamic-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Islamic Library by Wick Studio

Islamic Library Package is a Node.js library developed by Wick Studio, offering easy access to Islamic Adkar (supplications) and prayer times based on location.

Features

  • Morning, evening, and night Adkar.
  • Prayer times for any given location.

Installation

npm install islamic-library

Usage

Adkar

const { getMorningAdkar, getEveningAdkar, getNightAdkar } = require('islamic-library');

// Fetch Morning Adkar
getMorningAdkar().then(adkar => {
    console.log(adkar);
});

// Fetch Evening Adkar
getEveningAdkar().then(adkar => {
    console.log(adkar);
});

// Fetch Night Adkar
getNightAdkar().then(adkar => {
    console.log(adkar);
});

Prayer Times

const { getPrayerTimes } = require('islamic-library');

// Fetch Prayer Times
getPrayerTimes(latitude, longitude).then(prayerTimes => {
    console.log(prayerTimes);
});

API Reference

  • Morning, Evening, Night Adkar : Fetch respective Adkar.
  • Prayer Times : Fetch prayer times using latitude and longitude.

Credits and Acknowledgments

Connect with Wick Studio

Contributing

Contributions are welcome. Please follow the guidelines:

  • Clean, commented code.
  • Update tests and README as needed.
  • Adhere to the existing code style.

License

Licensed under the MIT License.

About

Islamic Library Package is a Node.js library developed by Wick Studio, offering easy access to Islamic Adkar (supplications) and prayer times based on location.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published