Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@amanda-mitchell/biblia-api

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@amanda-mitchell/biblia-api

A Javascript wrapper for the Biblia API.

  • 4.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

@amanda-mitchell/biblia-api

Node.js CI

This is a Javascript client for the Biblia API.

Installation

yarn add @amanda-mitchell/biblia-api

Usage

const bibliaApi = require('@amanda-mitchell/biblia-api');

// This can be any method that is compatible with the Fetch interface.
const fetch = require('node-fetch');

const apiKey =
  'Go to https://bibliaapi.com/docs/API_Keys to generate an API key.';

const client = bibliaApi.createBibliaApiClient({ apiKey, fetch });

client
  .content({
    passage: 'Genesis 1:1',
    format: 'txt',
    bible: 'leb',
  })
  .then(console.log)
  .catch(console.error);

Available methods

Each of these methods takes an options object containing the keys that are described in the official API docs. Endpoints that return JSON are parsed into Javascript objects, plain text and html responses are returned as strings, and anything else is returned as a binary blob object.

  • content: returns Bible content.
  • tableOfContents: returns books and chapters of a given version.
  • search: searches the text of a Bible version.
  • findBible: return information about a specific version.
  • find: return information about versions that match a query (or all available versions).
  • image: return an image binary for the cover of a version.
  • parse: parse text into one or more Bible references.
  • scan: find Bible references contained within a larger block of text.
  • tag: add html tags around Bible references contained within a larger block of text.
  • compare: compare two Bible references.

FAQs

Package last updated on 08 Mar 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc