I'd like to be able to mount a whole express sub-app on a uri containing a parameter. I've something similar to the following:
in app.js:
var app_authors = require('./api/authors');
var app = express();
...
app.use('/api/authors', app_authors);
...
module.exports = app;
in api/authors.js:
var app_author_books = require('./api/books');
var app = express();
...
app.get('/:author', ...);
...
app.use('/:author/books', app_author_books);
...
module.exports = app;
While the first sub-app works, mounted over /api/authors
, the nested one doesn't (urls of the form /api/authors/:author/books
and similar are not recognized)
EDIT:
For the curious, AFAIK sub-apps are not very clearly documented, but they should work, at least according to TJ Holowaychuk's Modular web applications with Node.js and Express (and the related vimeo screencast). See also this other SO answer.