f-wing

NodeJS express microservice

Usage no npm install needed!

<script type="module">
  import fWing from 'https://cdn.skypack.dev/f-wing';
</script>

README

f-wing

NPM Version NPM Downloads CircleCI

"Lets test these F-wings..."

"Wait master I hate...flying."

-- Qui-Gon Jin to Obi-Wan Kenobi

A base for Node.js microservices.

Install

npm install

Test

npm test

Usage

You can use this library in your index.ts like this:

import { Application, defaultMetricsRegistry } from 'f-wing';
import * as express from 'express';

const expressInstance = express();
const app = new Application(expressInstance, defaultMetricsRegistry);
// add routes here: app.addRoute(...)
app.start();