nci-express

2.0.2 • Public • Published

nci-express

Build Status

express plugin for nci to simplify http related plugins development

Installation

npm install nci-express

Usage

Add this plugin to the plugins section at server config before any plugin that using it.

plugins:
    - nci-express
    - nci-plugin-with-express

Add 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.

License

The MIT License

Readme

Keywords

Package Sidebar

Install

npm i nci-express

Weekly Downloads

1

Version

2.0.2

License

MIT

Last publish

Collaborators

  • fleg
  • okv