falci-express

This is a base configuration for express

Usage no npm install needed!

<script type="module">
  import falciExpress from 'https://cdn.skypack.dev/falci-express';
</script>

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.