A fork of express with patches and improvements for new integrations, fixes and more.
import neste from "neste";
const app = neste();
app.get("/", (req, res) => res.send("hello world"));
app.get("/json", (req, res) => res.json({message: "hello world"}));
app.listen(3000, () => {
console.log("Listen on %s", 3000);
});
const neste = require("neste"), app = neste();
app.get("/", (req, res) => res.send("hello world"));
app.get("/json", (req, res) => res.json({message: "hello world"}));
app.listen(3000, () => {
console.log("Listen on %s", 3000);
});
in a simple way:
npm install --save neste
Important as a fork of express will be compatible some, probably some others have stopped in the future.