falci-express
v0.2.0
Published
This is a base configuration for express
Downloads
6
Readme
MicroServices :: Express
This is a base configuration for express
How to use
Install
npm install falci-express
Create your server
const server = require('falci-express');
const router = server.router();
router.get('/', (req, res) => {
res.json({ ok: true });
});
const app = server({ router });
module.exports = app;
Next
Check the /docker folder on how to create its own image.