rpnzl / hexnut-handle

Simple hexnut middleware for dealing with connections and messages

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

hexnut-handle

hexnut-handle is a hexnut middleware for creating simple message and connection handlers. It can also be used with hexnut-client.

Installing

npm i hexnut-handle

Usage

Handling a connection

handle.connect(middlewareFunction)

const handle = require('hexnut-handle');

app.use(handle.connect(ctx => {
  ctx.send('Welcome!');
}));

Handling a message

handle.message(middlewareFunction)

const handle = require('hexnut-handle');

app.use(handle.message(ctx => {
  ctx.send(`You sent: ${ctx.message}`);
}));

Handling a message with a specific format

handle.matchMessage(messageRecogniserFunction, middlewareFunction)

const handle = require('hexnut-handle');

const messageRecogniser = msg => msg === 'Hello world';

app.use(handle.matchMessage(messageRecogniser, ctx => {
  ctx.send('Hello to you too!');
}));

Handling a connection closing

handle.closing(middlewareFunction)

const handle = require('hexnut-handle');

app.use(handle.closing(ctx => {
  // Do some cleanup here if necessary.
}));

About

Simple hexnut middleware for dealing with connections and messages

License:MIT License


Languages

Language:JavaScript 100.0%