Skip to content

Equipd Bible

Equipd Bible is an EPUB reader optimised for Bible study and ministry use. Compare multiple languages and translations side-by-side. Protocol Launcher allows you to generate deep links to open scriptures in Equipd Bible.

Usage

There are two ways to use this library:

  • On-Demand import from subpaths enables tree-shaking and keeps bundles small.
  • Full Import from the root package is convenient but includes all app modules.

Pick On-Demand for production builds; Full Import is fine for quick scripts or demos.

Select Installation Method

On-Demand
Recommended. Optimized for production.
Full Import
Convenient. Good for quick scripts.

Open App

On-Demand
ts
import { open } from 'protocol-launcher/equipd-bible'

const url = open()

Lookup Scripture

Lookup a scripture in Equipd Bible using the x-callback-url scheme. This is the most powerful method of integrating with the Equipd Bible app.

On-Demand
ts
import { lookup } from 'protocol-launcher/equipd-bible'

const url = lookup({
  scripture: 'John3:16',
})

Open Scripture

Open a specific scripture in Equipd Bible using the basic URL scheme.

On-Demand
ts
import { scripture } from 'protocol-launcher/equipd-bible'

const url = scripture({
  scripture: '2Timothy3:15,16',
})