2.0.3 • Published 5 years ago

bible-translation-lookup v2.0.3

Weekly downloads
4
License
ISC
Repository
github
Last release
5 years ago

bible-translation-lookup

build coverage npm dependencies downloads

A simple bible translation lookup

Introduction

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.

Usage

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

Browser usage

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>

JSON structure

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.

Supported translations

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

Author says

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.

Psalm 1:2-3 ESV

2.0.3

5 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago