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

bible-picker

v1.1.3

Published

**An Angular “datepicker-style” component for selecting Bible references** <div align="center"> <img src="https://raw.githubusercontent.com/ArielAleksandrus/bible-picker/master/demo.png" alt="Bible Picker – Light mode" width="45%"/> <img src="https://raw.

Readme

Bible Picker

An Angular “datepicker-style” component for selecting Bible references

A clean, intuitive, cascading Bible reference picker inspired by Angular Material’s MatDatepicker.

Live Demo (StackBlitz– edit & run instantly)

https://stackblitz.com/github/ArielAleksandrus/bible-picker

Usage

You no longer need to import a specific Bible version from the package.
You can load any supported Bible version directly from the public JSON files:

| Language | Bible Version | JSON URL | |------------|--------------------------------|--------------------------------------------------------------------------------------------| | Portuguese | Almeida Revista e Atualizada (ARA) | https://pub-7db5ca77d7e14ca79a36013b9fc40870.r2.dev/jsons/pt-ara.json | | English | New International Version (NIV) | https://pub-7db5ca77d7e14ca79a36013b9fc40870.r2.dev/jsons/en-niv.json | | Spanish | Nueva Versión Internacional (NVI) | https://pub-7db5ca77d7e14ca79a36013b9fc40870.r2.dev/jsons/es-nvi.json | | Chinese | Chinese New Version (Simplified) | https://pub-7db5ca77d7e14ca79a36013b9fc40870.r2.dev/jsons/zh-cnvs.json |

If you have another version you want to use, see these examples so you format your bible and then you can import it.

On your component's .html file: your-component.html


<!-- you can use on [select]: 'book' | 'books' | 'chapter' | 'chapters' | 'verse' | 'verses' -->
<bible-picker *ngIf="bibleData"
  [bible]="bibleData"
  [select]="verse"   
  (onSelected)="yourCallback($event)">
</bible-picker>

On your component's .ts file: your-component.ts

// import the bible picker and the bible version you want to use (currently only PT-Br ARA and en-UK KJV are available)
import { BiblePicker } from 'bible-picker';
import { Bible, BibleBook, BibleSelection, SelectedText } from './bible';

// then, import it inside your component
@Component({
  selector: 'app-home',
  templateUrl: './home.html',
  styleUrls: ['./home.scss'],
  imports: [CommonModule, BiblePicker],
  standalone: true
})

// finally, inside your component's class,
bibleData?: Bible;

ngOnInit() {
  // for example, Portuguese ARA version
  fetch('https://pub-7db5ca77d7e14ca79a36013b9fc40870.r2.dev/jsons/pt-ara.json')
      .then(response => response.json())
      .then(data => this.bibleData = <Bible>data);
}

yourCallback(ref: BibleSelection) {
  console.log('Selection:', ref);
  console.log('Abbreviation: ', Bible.abbrevSelection(ref));
  console.log('Verses: ', Bible.getVerses(ref));
}

Features

  • Standalone component (easy to import)
  • Fully offline (local JSON)
  • Cascading selection: Book → Chapter → Verse
  • Flexible input: stop at book, chapter or verse ([select] input)

Installation

npm install bible-picker --legacy-peer-deps # as it uses angular 19. but it should work for other versions as well.

Want a different version or language?

Pull requests are very welcome!

  • Almeida Revista e Corrigida (ARC)
  • Nova Versão Internacional (NVI)
  • Integration with online APIs

Contributing

  • Report bugs or request features
  • Submit new translations / languages
  • Improve UI/UX

All contributions are appreciated!

License

MIT © Ariel Aleksandrus

Thank you for using and helping improve Bible Picker!