✅ This MVP runs offline with sample data.
To load a full Bible + Strong’s without API keys:
- Create a folder:
data/ next to this HTML file.
- Add:
data/kjv.json (KJV text)
data/strongs.json (Strong’s dictionary entries)
data/kjv_tokens.json (optional word-level Strong’s mapping)
- Reload the page. The app will auto-detect and use them.
Expected JSON formats (minimal):
kjv.json:
{
"books": [
{
"id":"GEN",
"name":"Genesis",
"testament":"OT",
"chapters":[
{
"n":1,
"verses":[ {"v":1,"t":"In the beginning..."} ]
}
]
}
]
}
strongs.json:
{
"H8064": {
"num":"H8064",
"lemma":"שָׁמַיִם",
"translit":"shamayim",
"gloss":"heaven(s), sky",
"brief":"Dual form used for the visible arch of the sky… (brief summary)"
}
}
kjv_tokens.json (optional mapping):
{
"GEN.1.1": [
{"w":"In"}, {"w":"the"}, {"w":"beginning"},
{"w":"God"}, {"w":"created"},
{"w":"the"}, {"w":"heaven","s":"H8064"},
{"w":"and"}, {"w":"the"}, {"w":"earth"}
]
}
Andromo tip
Put this HTML + the data/ folder into your app’s assets (or your hosted site). This app does not require any API keys.