mount
mount copied to clipboard
use path-to-regex for express-like mounted routes
app.use(mount('/:id(\d+)', fn))
interested? path-to-regex does prefix routing. should be backwards compatible. not sure how i want to handle keys though. maybe (next, keys...)
I can't think of too many cases where it would be useful, usually you can just do the same thing by rewriting the url to match the mount point, but I think even just concept of mounting being just like the mount command is nice, not sure that we need regexp support, the middleware wouldn't know how to act on the params
this would be useful for nested resources. e.g. you have users that have posts and routes like:
/users/:id/posts/:id
and you wanna have two apps: a users app and a posts app - where the posts app is mounted in the users app.
there's no good way to do this currently (i think?) since the posts app would be mounted at /:id/posts.
:+1: on this request
+1
:+1:
I'm also for this! I often need to compose several sub-applications where one sub-application just needs to take all the paths that are not covered by the other ones. But I do want to have some shared things also.
Example:
import Koa from 'koa'
import mount from 'koa-mount'
import api from './subapps/api'
import html from './subapps/html'
import logger from './tools/logger'
const app = new Koa();
// api is mounted under api (this is possible)
app.use(mount('/api', api));
// html is mounted at /, but isn't called when the path starts with /api
// this is currently not possible
app.use(mount(/^\/(?!api)/, html);
// shared stuff
app.use(logger);
app.listen(3000);
I hope you see the validness of this use-case?
There's a workaround i'm currently using, but it is ugly. I just put this on top of every handler in the html route:
html.use(function (ctx, next) {
if (/^\/(api)/.test(ctx.url)) { return next(); }
//...
});
But this is becoming very tedious to maintain. It'd be better to have all the paths in one location.
+1
with different baseurl, I need to add all route with this mount method