This plugin allows for easy creation/configuration on an express server to be used by other plugins in an architect driven system
{
"packagePath": "./node_modules/architect-express",
"port": 3000
}
Let's use that puppy in our plugin
module.exports = function (options, imports, register) {
var app = imports.express;
// Do stuf here. It's just an express server.
};
- Allow registration of more apps
- Better configuration in config file
- Tests