Skip to content

Mount other IOPA applications or middleware to a given pathname

License

Notifications You must be signed in to change notification settings

iopa-io/iopa-mount

Repository files navigation

IOPA
iopa-mount

Build Status NPM limerun

NPM

About

Mount other IOPA applications or middleware to a given pathname

Usage

npm install iopa-mount --save
app.mount(path, function(context){});

Example

const iopa = require('iopa'),
  iopaMount = require('./index'),
  IOPA = iopa.constants.IOPA
 
var app = new iopa.App();

app.mount("/test", function (context, next) {
  context.log.info("HELLO WORLD");
   return Promise.resolve(null);
});

var demo = app.build();

var context = new iopa.Factory().createRequest("http://localhost/test/hello", "GET");
demo(context);

iopaFactory.dispose(context);

About

Mount other IOPA applications or middleware to a given pathname

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published