0.1.0 • Published 9 years ago
ilms-express
Licence
ISC
Version
0.1.0
Deps
0
Vulns
0
Weekly
0
ilms-express
See ilms project to understand the microservice way.
ilms-express it's a factory which build an express route handler from a ilms service
Example
const ilms = require('ilms');
const ilmsExpress = require('ilms-express');
const ilmsService = ilms.get('users.get');
const expressHandler = ilmsExpress(ilmsService);
app.get('/users', expressHandler);