npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

bibletui

v0.1.0

Published

A riced-out CLI tool for reading the Bible with interactive TUI, themes, search, and bookmarks

Readme

📖 Bible CLI

A command-line tool and interactive terminal UI for reading the Bible, complete with themes, search, bookmarks, and more.

demo

Features

  • Interactive terminal UI with book, chapter, and verse navigation
  • Single-shot commands for verse, chapter, search, and random verses
  • Random verse generator: -r, --random
  • Bookmarks with optional notes
  • Theming system (default, dark, light, sepia, black-metal-gorgoroth, etc.)
  • Whole-chapter view option in the Verses panel
  • Configuration stored locally in config.json
  • Keyboard-driven bookmark management in TUI (add with a, view with b, delete with d)
  • Random verse jump in TUI (r key)
  • Quit only via q or Ctrl-C; Esc now only closes the help dialog

Installation

Via npm (recommended)

npm install -g biblecli

From source

git clone https://github.com/drousseau/bible-cli.git
cd bible-cli
npm install
npm link

Quick Commands

  • bible -r or bible --random
    Show a random verse.
  • bible verse <Book> <Chapter> <Verse>
    E.g. bible verse John 3 16.
  • bible chapter <Book> <Chapter>
    E.g. bible chapter Psalms 23.
  • bible search "<query>"
    E.g. bible search "In the beginning".
  • bible bookmark <Book> <Chapter> <Verse> ["Note"]
    Add a bookmark.
  • bible bookmarks
    List all bookmarks.
  • bible theme <theme>
    Change theme (default, dark, light, sepia, black-metal-gorgoroth).
  • bible demo
    Run a non-interactive demo.

Interactive TUI

Simply run:

bible
  • Tab to switch panels (Books, Chapters, Verses).
  • Enter to select.
  • In the Verses panel, the top entry Whole chapter shows the entire chapter.
  • s to search, a to add a bookmark for the current verse, b to view bookmarks (d to delete), r for a random verse, t to pick theme.
  • h to toggle help; Esc closes help; q or Ctrl-C quits the app.

Configuration

A config.json in the project root stores:

  • theme: current theme name
  • translation: Bible JSON key (e.g. "kjv")
  • fontSize: font size setting (unused in TUI)
  • showVerseNumbers: toggle verse numbers (unused in TUI)
  • bookmarks: array of {book,chapter,verse,note} objects

You can edit config.json by hand or via the CLI commands.

Contributing

Pull requests welcome! Please:

  1. Fork the repo and create a feature branch
  2. Write tests and update docs
  3. Run npm test
  4. Open a pull request

License

MIT