npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@kmaslesa/quran-translations

v1.0.1

Published

Qur'an translations (Bosnian, English, German, Turkish, French, Spanish)

Downloads

4

Readme

Quran Translations

بسم الله الرحمن الرحيم

Translations in this pacakge: Bosnian, English, German, Turkish, French, Spanish

Installation

npm install @kmaslesa/quran-translations

Usage

const quranTranslation = require('@kmaslesa/quran-translations');
quranTranslation.getHolyQuranTranslation();

RESPONSE:
[
	{
		"aya":"بِسْمِ ٱللَّهِ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ",
		"ayaNumber":1,
		"page":1,
		"index":1,
		"sura":1,
		"juz":1,
		"hizb":1,
		"translation":{
			"bosnianKorkut":"U ime Allaha, Milostivog, Samilosnog!",
			"bosnianMehanovic":"S imenom Allaha, Svemilosnog, Milostivog!",
			"englishSaheeh":"(1) In the name of Allāh,[2] the Entirely Merciful, the Especially Merciful.[3]",
			"englishHilaliKhan":"1. In the Name of Allâh, the Most Gracious, the Most Merciful",
			"germanBubenheim":"Im Namen Allahs, des Allerbarmers, des Barmherzigen.",
			"turkishRowwadTranslationCentar":"Bismillâhirrahmânirrahîm",
			"frenchMontada":"1. Au nom d’Allah, le Tout Clément, le Tout Miséricordieux.[2]",
			"spanishMontadaEu":"1. (Empiezo)[2] con el nombre de Al-lah[3], el Clemente, el Misericordioso[4]."
		}
	},
	{
		"aya":"ٱلْحَمْدُ لِلَّهِ رَبِّ ٱلْعَٰلَمِينَ",
		"ayaNumber":2,
		"page":1,
		"index":2,
		"sura":1,
		"juz":1,
		"hizb":1,
		"translation":{
			"bosnianKorkut":"Tebe, Allaha, Gospodara svjetova, hvalimo,",
			"bosnianMehanovic":"Svaka hvala neka je Allahu, Gospodaru svjetova.",
			"englishSaheeh":"(2) [All] praise is [due] to Allāh, Lord[4] of the worlds -",
			"englishHilaliKhan":"2. All the praises and thanks be to Allâh, the Lord[1] of the ‘Âlamîn (mankind, jinn and all that exists).[2]",
			"germanBubenheim":"(Alles) Lob gehört Allah, dem Herrn der Welten,",
			"turkishRowwadTranslationCentar":"Hamd, alemlerin Rabbi olan Allah'a mahsustur.",
			"frenchMontada":"2. Louange à Allah, Seigneur de l’Univers.",
			"spanishMontadaEu":"2. ¡Alabado sea Al-lah, Señor de toda la creación!,"
		}
	}
	......
]
quranTranslation.getTranslationByJuz(juz); // juz=(1-30)
quranTranslation.getTranslationByHizb(hizb); // juz=(1-60)
quranTranslation.getTranslationByPage(page); // page=(1-604)
quranTranslation.getTranslationBySura(sura); // sura=(1-114)
quranTranslation.getTranslationByIndex(index); // index=(1-6236)
quranTranslation.getTranslationByAyah(aya, sura);
quranTranslations.searchAyahs(searchTerm); //searchTerm in bosnian, english, german..

EXAMPLES:
quranTranslations.searchAyahs('krava');
quranTranslations.searchAyahs('cow');
...

License

MIT