neste
TypeScript icon, indicating that this package has built-in type declarations

2.0.6 • Public • Published

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);
});

Installation

in a simple way:

npm install --save neste

Express middleware's

Important as a fork of express will be compatible some, probably some others have stopped in the future.

Package Sidebar

Install

npm i neste

Weekly Downloads

0

Version

2.0.6

License

MIT

Unpacked Size

88.3 kB

Total Files

21

Last publish

Collaborators

  • sirherobrine23