hook.io-fork

0.8.12-0 • Public • Published

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 mdns@0.0.4

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.

Readme

Keywords

none

Package Sidebar

Install

npm i hook.io-fork

Weekly Downloads

1

Version

0.8.12-0

License

none

Last publish

Collaborators

  • flybyme