-
-
Notifications
You must be signed in to change notification settings - Fork 795
Closed
Description
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.
Reactions are currently unavailable