Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
bible-translation-lookup
Advanced tools
A simple bible translation lookup
bible-translation-lookup
gets a bible translation JSON object when given a bible translation name, abbreviation or alias.
It works in Node code and browsers.
npm install --save bible-translation-lookup
const btl = require('bible-translation-lookup')
const translation1 = btl('KJV')
const translation2 = btl('New English Translation')
console.log(translation1.name) // King James Version
console.log(translation2.abbr) // NET
npm install --save bible-translation-lookup
Add a script tag in head:
<script src="node_modules/bible-translation-lookup/bibleTranslationLookup.js"></script>
Then use as follows:
<script>
const translation1 = bibleTranslationLookup('ASV')
const translation2 = bibleTranslationLookup('New King James Version')
console.log(translation1.name) // American Standard Version
console.log(translation2.abbr) // NKJV
</script>
bible-translation-lookup
returns a JSON object with the following structure:
{
"abbr": "DARBY",
"name": "Darby Translation",
"aliases": ["Darby Bible", "Darby Bible Translation", "DBY"]
}
If a translation cannot be found then undefined
is returned.
bible-translation-lookup
supports the translations listed in bible-translations.json
This is not an exhaustive list.
If you want support for another translation please raise an issue
God was kind to reveal his character to us in Jesus and in the bible. Let's read it.
but his delight is in the law of the Lord, and on his law he meditates day and night. He is like a tree planted by streams of water that yields its fruit in its season, and its leaf does not wither. In all that he does, he prospers.
FAQs
A simple bible translation lookup
The npm package bible-translation-lookup receives a total of 16 weekly downloads. As such, bible-translation-lookup popularity was classified as not popular.
We found that bible-translation-lookup demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.