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();
yarn add midnight
See full documentation.