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

kiwiirc-ircv3-ui

v0.1.0

Published

KiwiIRC plugin bundle adding IRCv3-style replies, reactions, typing polish, emoji button placement, and composer fixes.

Downloads

37

Readme

KiwiIRC IRCv3 UI

KiwiIRC plugin bundle for modern IRC UI extras:

  • IRCv3/tag-style message replies (+reply) with reply previews and jump-to-original
  • Emoji reactions over IRC message tags / TAGMSG
  • Typing indicator bridge/polish for clients that send typing TAGMSGs
  • Single custom emoji button placement in Kiwi's composer
  • Composer layout fixes for reply/typing previews on desktop and mobile
  • Safety watchdog for stuck Kiwi history/join loading states

This was built against KiwiIRC + Ergo and tested with The Lounge interop. Treat reactions/replies as tag-based experimental IRCv3-style behavior: other clients may ignore the tags unless they implement compatible UI.

Files

dist/plugin-emojis.js
dist/plugin-reactions.js
example/config-snippet.json

Load plugin-emojis.js before plugin-reactions.js.

Install from npm

npm install kiwiirc-ircv3-ui

Copy the browser plugins into your KiwiIRC static plugins directory, for example:

cp node_modules/kiwiirc-ircv3-ui/dist/plugin-*.js /path/to/kiwiirc/static/plugins/

Then add them to your KiwiIRC static/config.json:

{
  "plugins": [
    {
      "name": "ircv3-ui-emojis",
      "url": "static/plugins/plugin-emojis.js?v=0.1.0"
    },
    {
      "name": "ircv3-ui-reactions",
      "url": "static/plugins/plugin-reactions.js?v=0.1.0"
    }
  ]
}

If your Kiwi deployment aggressively caches static/config.json, add or update the config meta tag in index.html:

<meta name="kiwiconfig" content="static/config.json?v=0.1.0">

Server/client notes

Recommended IRC capabilities:

  • message-tags
  • echo-message
  • draft/event-playback when available

Replies are sent using the +reply message tag. Reaction support uses message tags / TAGMSG; compatibility depends on your IRC server and other clients.

Publishing

Publish to npm:

npm publish

License

MIT