0.0.9 • Published 5 months ago

@andrei-markeev/express-mini v0.0.9

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

express-mini

Minimalistic Express-like web server with zero dependencies.

Installation

npm i @andrei-markeev/express-mini

Usage

import * as app from "@andrei-markeev/express-mini"

app.get("/hello", async () => ({ text: "Hello world!" }));
app.get("/test", async () => ({ html: "<html><body><h1>Test</h1></body></html>" }));

app.listen(3000, __dirname + "/public", () => console.log("Server listens on port 3000"))

In this example, server will serve static files from the public folder (relative to the script directory).

If you don't need automatic static file serving, pass null.

0.0.9

5 months ago

0.0.8

5 months ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.3

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago