midnight
Version:
Web framework for building modern web applications
23 lines (14 loc) • 467 B
Markdown
Midnight is an open source web framework for node.js without external dependencies.
```js
const midnight = require("midnight");
const app = midnight();
app.route("/", (req, res) => {
res.send("Hello world!");
});
app.start();
```
> yarn add midnight
See [full documentation](http://msavela.github.io/midnight).