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

bhit

v1.0.0

Published

Tracker for Breedhub Interconnect (connect server and client both behind NAT)

Readme

Interconnect Tracker

See https://github.com/breedhub/interconnect

Installation

PostgreSQL and Redis

Install PostgreSQL 9.4+. Debian example:

# apt-get install postgresql postgresql-client

Install Redis 3.0+. Debian example:

Jessie:

# wget https://www.dotdeb.org/dotdeb.gpg
# apt-key add dotdeb.gpg
# echo "deb http://packages.dotdeb.org jessie all" >> /etc/apt/sources.list
# apt-get update

Now Jessie and Stretch:

# apt-get install redis-server

Install bhit

Debian:

# curl -s http://tracker.breedhub.net/bhit/install.sh | sh -s

Manually:

  • Install Node 8 and system build tools
  • Run npm install -g bhit --unsafe-perm

Prepare and start

Replace 1.2.3.4 with your IP address. You can also any hostname here. The tracker will be known to daemons by this address or name.

# cd /
# bhitctl install 1.2.3.4
# sudo -u postgres bhitctl create-db
# bhitctl migrate-db
# systemctl enable bhit
# systemctl start bhit

Private tracker

You can limit who can use your tracker by whitelisting their emails:

[tracker]
allow_users[] = [email protected]
allow_users[] = [email protected]
allow_users[] = [email protected]