bible-chichewa
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

Chichewa Bible npm Package

npm version npm downloads License Build Status Coverage Status

The Chichewa Bible npm package is an open source project that provides developers with a convenient way to access and work with the Chichewa translation of the Bible within their Node.js applications. This package aims to simplify the integration of Chichewa Bible text into various projects, such as language learning apps, Bible study tools, and more.

Features

  • Access verses, chapters, and books of the Chichewa Bible programmatically.
  • Retrieve text content in Chichewa for quoting, referencing, and display.
  • Flexible search functionality for finding specific passages or keywords.
  • Lightweight and easy-to-use API for seamless integration into Node.js applications.
  • Continuously updated to reflect the latest versions of the Chichewa Bible text.

Installation

You can install the Chichewa Bible npm package using npm:

npm install chichewa-bible

OR

yarn add chichewa-bible

Examples

To use the bible-chichewa library to retrieve a verse from the Chichewa Bible, follow these steps:

Example: Retrieving a Bible Verse

const { getVerse, BOOK } = require('bible-chichewa');
const book = BOOK.Genesis;
const chapter = 1;
const verse = 1;

const verseText = getVerse(book, chapter, verse);
console.log(`Verse ${book} ${chapter}:${verse}: ${verseText}`);

Example: Retrieving a Bible Chpater

const { getChapter, BOOK } = require('bible-chichewa');

const book = BOOK.Genesis;
const chapter = 1;

const chapterVerses = getChapter(book, chapter);

console.log(`Chapter ${book} ${chapter}:`);
chapterVerses.forEach((verse, index) => {
  console.log(`${index + 1}: ${verse}`);
});

Example: Retrieving a Bible Verses within Range

const { getVerses, BOOK } = require('bible-chichewa');

const book = BOOK.Exodus;
const chapter = 20;
const verseStart = 1;
const verseEnd = 5;

const verses = getVerses(book, chapter, verseStart, verseEnd);

console.log(`Verses ${book} ${chapter}:${verseStart}-${verseEnd}:`);
verses.forEach((verse, index) => {
  console.log(`${verseStart + index}: ${verse}`);
});

Readme

Keywords

Package Sidebar

Install

npm i bible-chichewa

Weekly Downloads

4

Version

1.1.0

License

MIT

Unpacked Size

3.96 MB

Total Files

1196

Last publish

Collaborators

  • m2kdevelopments