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

hook.io-fork

v0.8.12-0

Published

<img src="http://i.imgur.com/S2rgr.png"></img>

Readme

hook.io is a versatile distributed event emitter built with node.js

hooks are nodes which can seamlessly work together across any device or network to create self-healing meshes of i/o

Features :

  • Build applications intelligently by combining together small hook actors
  • Rapidly compose new functionality in a distributed and organized way
  • Dead simple Inter Process Communication built on-top of node's native EventEmitter class
  • Supports a large amount of common i/o sources out of the box
  • Additional i/o support from a rich community and network of user-created hook libraries
  • Built-in auto-discovery systems using http, tcp, mdns, and hnet
  • Hooks can exist on any device that supports JavaScript (cross-browser support via socket.io)
  • Seamlessly manages the spawning and daemonizing additional hooks
  • Legacy applications can easily be extended to work with hook.io

Installation

 [sudo] npm install hook.io -g

Usage

If you are impatient and wish to jump straight to code, we have hundreds of code examples available here: https://github.com/hookio/hook.io/tree/master/examples

How to use hook.io as a node.js script or as the hook binary

hook.io works well as both the hook binary or required and used programmatically through node.js

To use the hook binary simple type this on your terminal:

 hook

This will start up your first hook!

To execute this same action programtically we would create a myhook.js file that contained:

var hookio = require('hook.io'),
    hook   = hookio.createHook();

    hook.start();

hook repl

The hook repl provides an easy way to interact with a live hook.io mesh.

Simply type:

 hook --repl

repl img here

hook configuration

hook messaging

Note: This is only one, small, example.

To see all other supported types of hook messaging ( including EventEmitter and Callback style ), see: https://github.com/hookio/hook.io/tree/master/examples/messaging

hook a

var hookio = require('hook.io');

var hookA = hookio.createHook({
  name: "a"
});
hookA.on('*::sup', function(data){
  // outputs b::sup::dog
  console.log(this.event + ' ' + data);
});
hookA.start();

hook b

var hookB = hookio.createHook({
  name: "b"
});
hookB.on('hook::ready', function(){
  hookB.emit('sup', 'dog');
});
hookB.start();

piping stdout and stdin through unix pipes

pipe stdin to hookio

tail foo.txt -f | hook 

hook.io will now emit stdin data as separate hook events

pipe hook.io events to stdout

hook -p | less

Using the -p option, hook.io will stream events to stdout as \n delimited JSON documents. Each document represents a single hook event.

example stdout:

{"name":"the-hook","event":"the-hook::sup","data":{"foo":"bar"}}

multicast dns ( mdns )

Multicast DNS (mdns) is a way of using DNS programming interfaces, packet formats and operating semantics on a small network where no DNS server is running. The mDNS protocol is used by Apple's Bonjour and Linux Avahi service discovery systems. mdns is an easy way to help networked devices find each other without any prior configuration.

hook.io has built-in experimental mdns support. This is intended to work on all operating systems and is intented for a way to providezero configuration networking discovery and connection of hooks over a Local Area Network ( LAN )

IMPORTANT

Before you can use the mdns feature, you will need to install a few additional dependencies.

 npm install [email protected]

MacOS and Windows should work out of the box. If you are running Linux, you may need to install the following libraries.

 apt-get install libavahi-compat-libdnssd-dev

using mdns

Computer 1

 hookio -m

Computer 2

hookio -m

Now these two computers ( connected over a LAN, with no central DNS server ) will automatically discovery each other and begin to transmit messages. Think of the possibilities!

Hook Libraries

Wiki: https://github.com/hookio/hook.io/wiki/Hook.io-Libraries

You can also search http://search.npmjs.org/ for "hook.io" ( although there are so many matches already, the search interface can't display them all.. )

Tests

All tests are written with vows and require that you link hook.io to itself:

  $ cd /path/to/hook.io
  $ [sudo] npm link
  $ [sudo] npm link hook.io
  $ npm test

Additional Resources

Core Contributors ( https://github.com/hookio/hook.io/contributors )

MIT License

Copyright (c) Nodejitsu

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.