Mount other IOPA applications or middleware to a given pathname
npm install iopa-mount --save
app.mount(path, function(context){});
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);