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

bitaddress

v1.0.0

Published

Bitcoin address command-line generator

Readme

Bit Address

Command line bitcoin wallet generator, inspired by bitaddress.org

Installation

$ npm install -g bitaddress

Features

  • Single wallet
  • Brain wallet
  • Bulk wallet
  • Detail wallet (todo)
  • Generate PDF file automatically
  • Generate QRCode in terminal
  • Quick find address prefix and suffix
  • All generated addresses are compressed

Example

Single wallet

Generate a new random bitcoin address

$ bitaddress singlewallet
Bitcoin Address: 1MrkWMnWLW53SQVQ5Pd2BsugY1F8H1oKio
Private Key:     L1Dxj6ekEGJ28TS6QkhLYf3a7QTgwHcTwxU6psM5Aw8fD6x3hKKh

Options

$ bitaddress singlewallet -h

  Usage: singlewallet [options]

  Options:

    -o, --output <path>  Specify file to write report to
    -q, --qrcode         Print qrcode in the console
    -h, --help           output usage information

Brain wallet

Generate a new bitcoin address from a passphrase

$ bitaddress brainwallet 1234567890abcde
  Bitcoin Address: 1Fk73xfCxQBRf7ZvMpxA7Z8yY2D9emgQEn
  Private Key:     L44Dtfxg9CS2A9viE53m2CN6sCuCtifyg4QzzQQwarjUT1erKxLe

Options

$ bitaddress brainwallet -h

  Usage: brainwallet [options]

  Options:

    -o, --output <path>  Specify file to write report to
    -q, --qrcode         Print qrcode in terminal
    -h, --help           output usage information

Bulk wallet

Generate some new bitcoin addresses

$ bitaddress bulkwallet 10
1: "16mQ3MNP9NHuPEfw7CKoSXSS4Nz7qF8RxG", "KxRt6DVV9sZT3DYLNA2RWRHyngfHA3Gxb7JKunFvkmrCqURkKrHK"
2: "1Bgr9niuY2hc8nCubpjBSHUzmAa1rYRkHk", "L3XPntXetNHLwWnHxEUiPGHkR2NaeeFAonHTmsTzQ7SbA1L1VamB"
3: "1L258vYBcET9YwSz3bopzDXMf5ma335yaw", "L37WE1c8Fxza9vFpu8dEkE2bGoHdURUMMS75nTPCtoRfEs11S6wZ"
4: "1PwdCaCQhjkTq68ttrHH3uZUk1rR1C1bUB", "L5nxcnsAsw8aegmTvcebjEKnH2G385EqxSgrERLMvCvvZLAhvotS"
5: "18q3sbEoGjmK2wZ9zbBQFPaLRso65s9eB6", "L4DqiQwvhayG299c11s2WCgxsHDHAYpZTqch7seJ7o3T7D4Jzoqh"
6: "1HEDKHWf9VJF32yzEggBkjQFEPnXnyV2Me", "L1ssxKJVQBHH2hsvw9ghFdmQrKXXd9rtuYxsSJeFHUHsiNWQZijG"
7: "1Hzb43sWRBrh7PVkaWoHMnQWnJSxZTygM6", "KyFhaTz5LqtyWh68f8LCSQayo1xpGcdEfSdzBQ16SzbCMrrMSS7B"
8: "17Y2hixLYGJvpGJmhwgu2y4ZdoghDpReUf", "KyxhYAmJ3ap81REujqTfbnjW57a7LNgaSZLYJEZ35UGHQi2TkK11"
9: "1KJ4mjoXeso3Kf1sWvawNTWHdNWriTH3en", "KzkcBd8JKshAeTqPXJ2q8MhxetjN69vgqkMt2L7B6AYXPZzyogHX"
10: "19Lps6FkZfAw77uZzdpVTyPL7j9MRcwAg2", "KzNiPD78YB6NkHAJHNRPXQUaPPF4zhUDgBzMkVDSgiovfbgeZayF"

Options

$ bitaddress bulkwallet -h

  Usage: bulkwallet [options]

  Options:

    -o, --output <path>       Specify file to write report to
    -s, --startwith <string>  Find address startwith you want
    -e, --endwith <string>    Find address endwith you want
    -h, --help                output usage information

Tool

qrcode

Generate qrcode from input to terminal

$ bitaddress qrcode 123

Tests

To run the test suite, first install the dependencies, then run npm test:

$ npm install
$ npm test

License

MIT