koa-mount
Mount other Koa applications as middleware. The path passed to mount() is stripped from the URL temporarily until the stack unwinds. This is useful for creating entire apps or middleware that will function correctly regardless of which path segment(s) they should operate on.
Installation
$ npm install koa-mountExamples
View the ./examples directory for working examples.
Mounting Applications
Entire applications mounted at specific paths. For example you could mount a blog application at "/blog", with a router that matches paths such as "GET /", "GET /posts", and will behave properly for "GET /blog/posts" etc when mounted.
const mount = require('koa-mount');
const Koa = require('koa');
// hello
const a = new Koa();
a.use(async function (ctx, next){
await next();
ctx.body = 'Hello';
});
// world
const b = new Koa();
b.use(async function (ctx, next){
await next();
ctx.body = 'World';
});
// app
const app = new Koa();
app.use(mount('/hello', a));
app.use(mount('/world', b));
app.listen(3000);
console.log('listening on port 3000');Try the following requests:
Mounting Middleware
Mount middleware at specific paths, allowing them to operate independently of the prefix, as they're not aware of it.
Optional Paths
The path argument is optional, defaulting to "/":
Debugging
Use the DEBUG environement variable to whitelist koa-mount debug output:
License
MIT
Last updated