express plugin for nci to simplify http related plugins development
npm install nci-expressAdd this plugin to the plugins section at server config before any plugin that using it.
plugins:
- nci-express
- nci-plugin-with-expressAdd this plugin to peerDependencies at your plugin package.json
Just use app.express as express instance
exports.register = function(app) {
app.express.get('/some/route', function(req, res) {
res.json({ok: true})
});
};Look at nci-shields as example.