nippy / nippy

Fast, opinionated, minimalist micro service framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nippy

Fast, opinionated, minimalist micro service framework for node, backed by express and select middleware.

import { Nippy } from "@nippy/core";
const app = new Nippy("My service");

app.get("/", (req, res) => {
  res.send("Hello world");
});

app.listen(3000);

Installation

$ npm install --save @nippy/core

Features

  • Logging with Winston and Morgan
  • Security hardening with Helmet
  • Configurable default middleware
    • Body parser
    • Compression
    • CORS

About

Fast, opinionated, minimalist micro service framework.

License:MIT License


Languages

Language:TypeScript 93.3%Language:Shell 6.7%