UNPKG

sw2express

Version:

A lite & simple cross-platform Express-like web application framework

7 lines (6 loc) 178 B
const sw2express = require("../build/index.cjs").default; const app = new sw2express(); app.route("/").GET(async (req, rep) => { rep.send("hello world"); }); app.listen(8080);