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 🙏

© 2024 – Pkg Stats / Ryan Hefner

msg-router

v1.1.6

Published

Simple intermediate layer router for data messages in JSON format

Downloads

80

Readme

msg-router

Simple intermediate layer router for data messages in JSON format

NPM version Dependency Status License Downloads

Installation

npm install msg-route --save

usage

This module can be used to route any data to their handlers. For more glkbokog understanding, consider the following example of routing telegram bot messages.

Eхample for telegram bot

stc/bot.main.js

const { Telegraf } = require('telegraf');
const MsgRouter = require('msg-router');

const bot = new Telegraf("your telegram token");
const router = new MsgRouter();

// connect routers
const routerForHelp = require('./routers/command.help.js')
router.use("/help", routerForHelp);

const routerForWeather = require('./routers/command.weather.js')
router.use("/weather", routerForWeather);



// the error handler must be the last in the handler chain. 
// The error handler function, unlike a regular handler, takes 3 arguments:
//  error   - an object with information about the error
//  message - the message, the processing of which led to the generation of 
//            an exception
//  next    - a function whose call will result in the transfer of control 
//            to the next handler (if when calling next (argument) the 
//            argument is not defined then the next handler will be called,
//            if defined, then the next error handler will be called
router.use((err, msg, next) => {
    // тут можно обработать ошибки
    console.log('bot.main.js', 0, msg.ctx.text);

    // или передать их на обработку дальше
    next(err);
});



// install a message handler that starts routing via MsgRouter
bot.on("message", (ctx) => {
    // form the path from the message text
    const targetPath = ctx.message.text.replace(/\s+/g,"/")

    // pass the path and object with the bot context to the router
    router.process({
        targetPath, 
        ctx
    });
})

// launch the bot
bot.launch()

the router files (src/routers/command.help.js and src/routers/command.weather.js) will be something like this:

const MsgRouter = require('msg-router');
const router = new MsgRouter();


// handler argument to / help command
router.use("/:args*", (msg, next) => {
    // this handler is called for all messages starting with "help" or 
    // "/help" command arguments will be in an array in msg.params.args
    // for a more complete understanding of the syntax used for path
    // see the module description:
    // https://www.npmjs.com/package/path-to-regex

    ...
    your handler code
    ... 

    // we can also reply to the user with msg.ctx.reply ("...")
    msg.ctx.reply("Српавку еще не завезли");
    
    // call next (); if we want to transfer processing to the next 
    // handlers. If next (argument); will be called with an argument,
    // this will ignore subsequent handlers and the next error handler
    // will be called. You can achieve the same behavior by calling an
    // error with throw
    next();
});


// Error handler
router.use((err, msg, next) => {
    // This handler will be called when an error occurs in the code of
    // the previous handlers of this router, as well as its sub-routers
    // if you send an error in their error handlers with the
    // next(error) command.
    ...
    your error handler code
    ... 

    next(err);
});

// exporting the router
module.exports = exports = router;

Another, simple, abstracted example

const MsgRouter = require('msg-router');


/*************************************** */
const route_aaa = new MsgRouter();
const route_bbb = new MsgRouter();
const route_ccc = new MsgRouter();


/*************************************** */
route_aaa.use((msg, next) => {
  console.log('route_aaa', 0, msg);
  next();
});


route_aaa.use('/aaa/bbb', route_bbb);

route_aaa.use('/aaa',(msg, next) => {
  console.log('route_aaa', 1, msg);
  next();
});

route_aaa.use('/aaa/:Aparam*',(msg, next) => {
  console.log('route_aaa', 1, msg);
  next();
});


route_aaa.use((err, msg, next) => {
  console.log('route_aaa', "ERROR", err, msg);
  next();
});


/*************************************** */
route_bbb.use((msg, next) => {
  console.log('route_bbb', 0, msg);
  // throw 456;
  next();
});

route_bbb.use('/ccc', route_ccc);

route_bbb.use(':Bparam*',(msg, next)=>{
  console.log("route_bbb", 1, msg);
  next();
});

route_bbb.use((err, msg, next) => {
  console.log('route_bbb', "ERROR", err, msg);
  next(err);
});



/*************************************** */
route_ccc.use((msg, next) => {
  console.log('route_ccc', 0, msg);
  next();
});

route_ccc.use('/:Cparam', (msg, next) => {
  console.log('route_ccc', 1, msg);
  next();
});

route_ccc.use((err, msg, next) => {
  console.log('route_ccc', "ERROR", err, msg);
  next(err);
});


/*************************************** */
// route_aaa.process({ targetPath: '/aaa', data: 'aaa' });
route_aaa.process({ targetPath: '/aaa/bbb/ccc', data: 'aaa' });

... documentation in processed

Participation in development

https://github.com/lastuniverse/msg-router/issues

License

MIT

NPM