This is the entire (695 hymn) Sda Hymnal; free to use in any capacity.
npm install sda-hymnal
const sdaHymnal = require('sda-hymnal')
sdaHymnal({
number: VERSE_NUMBER, //Either Number or Title, only one required.
title: VERSE_TITLE,
type: 'json' || 'text' || 'html' //Defaults to JSON
}).then( x =>{
//...
})
{
hymnNumber: NUMBER,
hymnTitle: 'Title',
verses: [
{
verseName: 'Verse 1',
text: 'Verse_Text'
},
{
verseName: 'Refrain',
text: 'Refrain_Text'
},
//....
]
}
HYMN_NUMBER
HYMN_TITLE
Verse 1
Verse_Text
Refrain
Refrain_Text
<h4>Hymn_Number</h4>
<h4>Hymn_Title</h4>
<h5>Verse 1</h5>
<p>Verse_Text</p>
<h5>Refrain</h5>
<p>Refrain_Text</p>
SQLITE Data modified from obaralll's hymnal app