0.2.0 • Published 5 years ago

falci-express v0.2.0

Weekly downloads
10
License
-
Repository
github
Last release
5 years ago

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.