New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

malkoha

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

malkoha

Dynamic routes for Hapi.js with support for add, update, and delete of routes

latest
npmnpm
Version
0.0.3
Version published
Weekly downloads
2
-60%
Maintainers
1
Weekly downloads
 
Created
Source

Malkoha

Dynamic routes for Hapi.js with support for add, override, update, and delete of routes.

Special Notes

Malkoha implements a concept that is native to Hapi, the idea of being able to "delete" a route from the routing table. This is done by removing the route handler and not the route configuration itself. This may cause "issues" so be careful if you decide to use it.

Because of the way that Malkoha works you may experience race conditions when adding, updating, overriding, or deleting routes. You should never expect it to work the right way 100% of the time. Your users may see 500's and/or your application may simply crash. Always test, test, and test some more.

Install

npm install malkoha

Usage

const {Malkoha} = require('malkoha');
const Hapi = require('hapi');

const server = new Hapi.Server();
server.connection({ port: 3000 });

const greet = (req, reply)=>{
  const {
    name = 'World'
  } = req.params;
  return reply(`Hello ${name}!`)
};

server.register(Malkoha, (err)=>{
  const m = server.malkoha;

  // Add some routes
  m.route([
      {
        method: 'GET',
        path: '/hello',
        handler(request, reply){
          reply('Hello!');
        }
      },
      {
        method: 'GET',
        path: '/greet/{person}',
        handler(request, reply){
          reply(`Hello ${request.params.person}!`);
        }
      }
    ]);

  // Change what they do some time later
  m.route([
      {
        method: 'GET',
        path: '/hello',
        handler: greet
      },
      {
        method: 'GET',
        path: '/greet/{name}',
        handler: greet
      }
    ]);

  // Delete ones you don't need
  m.delete([
      {
        method: 'GET',
        path: '/hello',
        handler: greet
      }
    ]);

  server.start((err) => {
    if(err){
      throw err;
    }
    console.log('Server running at:', server.info.uri);
  });
});

API

route(routes)

Takes a route or array of routes and adds them to the Malkoha routing table.

delete(routes)

Takes a route or array of routes and removes them to the Malkoha routing table.

NOTE: Malkoha can not remove a route that was added to the server instance.

Testing

npm test

Keywords

Hapi

FAQs

Package last updated on 10 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts