1.3.0 • Published 1 month ago

@glowstudent/youversion v1.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

YouVersion-API

A simple module to get the Verse of the Day and any verse you would like.

Installation

Note I use pnpm in these examples. NPM will also work if you don't have or want to install pnpm

First step is of course installing the module

pnpm install @glowstudent/youversion

Usage

Import the library

const YouVersion = require("@glowstudent/youversion");

Getting the verse of the day:

Note Version is not yet configurable

const YouVersion = require("@glowstudent/youversion");

(async () => {
  console.log(await YouVersion.getVerseOfTheDay());
})();
{
  "citation": "Hebrews 11:1 (NIV)",
  "passage": "Now faith is confidence in what we hope for and assurance about what we do not see."
}

Getting any verse:

const YouVersion = require("@glowstudent/youversion");

(async () => {
  console.log(await YouVersion.getVerse("John", "3", "16", "KJV"));
})();
{
  "citation": "John 3:16 KJV",
  "passage": "For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life."
}

Responses

Requests return a JSON object and a status code.

Good Respsonses

Good responses will return a JSON with a citation and a passage.

{
  "citation": "John 3:16 NLT",
  "passage": "For God so loved the world, that he gave his only begotten Son, that whosoever believeth in him should not perish, but have everlasting life."
}

Bad Responses

If book is not specified or cannot be read it will return an error.

{
  "code": 400,
  "message": "Missing field 'book'"
}

Trying to access a book that does not exist will prompt a similar response but with a different error message

{
  "code": 400,
  "message": "Could not find book 'Coffee' by name or alias."
}

Books and Aliases

BookAlias
GenesisGEN
ExodusEXO
LeviticusLEV
NumbersNUM
DeuteronomyDEU
JoshuaJOS
JudgesJDG
RuthRUT
1st Samuel1SA
2nd Samuel2SA
1st Kings1KI
2nd Kings2KI
1st Chronicles1CH
2nd Chronicles2CH
EzraEZR
NehemiahNEH
EstherEST
JobJOB
PsalmsPSA
ProverbsPRO
EcclesiastesECC
Song of SongsSNG
IsaiahISA
JeremiahJER
LamentationsLAM
EzekielEZK
DanielDAN
HoseaHOS
JoelJOL
AmosAMO
ObadiahOBA
JonahJON
MicahMIC
NahumNAM
HabakkukHAB
ZephaniahZEP
HaggaiHAG
ZechariahZEC
MalachiMAL
MatthewMAT
MarkMRK
LukeLUK
JohnJHN
ActsACT
RomansROM
1st Corinthians1CO
2nd Corinthians2CO
GalatiansGAL
EphesiansEPH
PhilippiansPHP
ColossiansCOL
1st Thessalonians1TH
2nd Thessalonians2TH
1st Timothy1TI
2nd Timothy2TI
TitusTIT
PhilemonPHM
HebrewsHEB
JamesJAS
1st Peter1PE
2nd Peter2PE
1st John1JN
2nd John2JN
3rd John3JN
JudeJUD
RevelationREV

Versions

VersionsID
AMP1588
ICL00D1196
KJV1
NIV111
NLT116
NR06122
SCH2000157
VULG823
THSV11174
TNCV179
THAERV203
NODTHNT1907
NTV2744
ESV59
SBLG156
CCB36

Links

Contributing

Before creating an issue, please ensure that it hasn't already been reported/suggested.

License

This project is licensed under the terms of the MIT license.

1.3.0

1 month ago

1.2.7

6 months ago

1.2.6

7 months ago

1.2.5

7 months ago

1.2.4

7 months ago

1.2.0

1 year ago

1.2.3

1 year ago

1.2.2

1 year ago

1.2.1

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago