Express accepts functions and/or express apps as middleware.
var app = require('express')();
app.use(function(){
});
app.use('/path', require('./otherapp'));
It's really useful to split an express app into smaller modules with single responsibilities. Feathers doesn't support it.
Express accepts functions and/or express apps as middleware.
It's really useful to split an express app into smaller modules with single responsibilities. Feathers doesn't support it.