andrei-markeev / express-mini

Minimalistic express-like webserver with zero dependencies

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

Minimalistic express-like webserver with zero dependencies


Languages

Language:TypeScript 100.0%