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

kiwibnc

v1.0.1

Published

Multi user IRC bouncer

Readme

KiwiBNC - An IRC bouncer

  • Stay connected to IRC. For one person or 10,000 people
  • Zero downtime updates and restarts. Don't knock everyone offline because an update is available
  • Extensible via javascript plugins
  • Use with older or modern IRCv3 clients
  • Message storage via sqlite database
  • RabbitMQ support for larger deployments

Status

While KiwiBNC is already in use for single users and some networks it is currently in development and may break. If you require 100% uptime and rely on your BNC for your health, do not use it yet.

For general usage it is working and is currently being put to the test in live environments. However, as we learn more on how people use the project things may change at the moment.

TODO

  • Single binary downloads
  • Plain text file message logs
  • Web admin interface
  • Websocket support

Installation

Prerequisites

Make sure to have installed on your system:

  • nodejs
  • npm

Download and install

$ git clone https://github.com/kiwiirc/kiwibnc.git
$ cd kiwibnc
$ npm install

Usage

After installing, take a glance over config.ini and make sure it suits your needs. It should work out of the box for most people.

Add a user

$ npm start adduser

> [email protected] start /home/kiwibnc
> node src/server.js "adduser"

01:09:17 [adduser] l_info ## Starting adduser ##
01:09:17 [adduser] l_info Using config file ./config.ini
Username: someuser
Password: ****
Admin account? n
Added new user someuser

Starting the bouncer

$ npm start

Adding networks and controlling your bouncer

Connect to your bouncer via your IRC client. Your password should be in the form of username:password. Once connected you will receive a private message from *bnc - this is your bouncer control buffer.

01:12 -!- Irssi: Starting query in localhost with *bnc
01:12 <*bnc> Welcome to your BNC!
01:12 <someuser> addnetwork
01:12 <*bnc> Usage: addnetwork name=example server=irc.example.net port=6697 tls=yes nick=mynick
01:12 <*bnc> Available fields: name, server, port, tls, nick, username, realname, password
01:12 <someuser> addnetwork name=freenode server=irc.freenode.net port=6667 nick=somenick
01:12 <*bnc> New network saved. You can now login using your_username/freenode:your_password

Send help to *bnc for all the commands you can send.

IRCv3 support

KiwiBNC <> server spec support:

  • server-time
  • multi-prefix
  • away-notify
  • account-notify
  • account-tag
  • extended-join
  • userhost-in-names
  • message-tags

Client <> KiwiBNC spec support:

  • batch
  • server-time
  • away-notify
  • account-notify
  • account-tag
  • extended-join
  • multi-prefix
  • userhost-in-names
  • message-tags

License

Apache License, Version 2.0