1.2.0 • Published 9 years ago

holy-bible v1.2.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

Holy Bible Build Status npm version

Easy-to-use JS library for retrieving bible scripture.

Installation

$ npm install holy-bible --save

Usage

var bible = require('holy-bible');

bible.get('John 15:13', 'ASV') // also supports 2-letter abbrev (ie: Jn 15:13)
  .then(function (res) {
    console.log(res.text);
  });

// Greater love hath no man than this, that a man lay down his life for his friends.

Documentation

###.get(verse , version) => Promise

######verse - A bible passage Type: String

######version - Bible version Type: String Default: 'ASV'

######Resolves into an object

{
  version: 'ASV',
  passage: 'John.15.13',
  text: 'Greater love...'
}

Currently Supported Versions

  • ASV
  • KJV

Tests

$ npm install
$ npm test

License

MIT

1.2.0

9 years ago

1.1.0

9 years ago

1.0.6

10 years ago

1.0.5

11 years ago

1.0.4

11 years ago

1.0.3

11 years ago

1.0.2

11 years ago

1.0.1

11 years ago

1.0.0

11 years ago

0.0.1

11 years ago