0.1.0 • Published 6 years ago

midnight v0.1.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

Midnight Build Status

Midnight is an open source web framework for node.js without external dependencies.

const midnight = require("midnight");
const app = midnight();

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

app.start();

Installation

yarn add midnight

Documentation

See full documentation.