2.0.2 • Published 8 years ago
nci-express v2.0.2
nci-express
express plugin for nci to simplify http related plugins development
Installation
npm install nci-expressUsage
Add 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.