toastiebun
v1.0.0
Published
ToastieBun is an express like bun based http server framework.
Maintainers
Readme
ToastieBun
ToastieBun is an express like bun based http server framework.
Installation
bun install toastiebunUsage
// index.ts
import toastiebun from "toastiebun";
const app = new toastiebun.server();
app.get("/", (req, res) => {
res.send("Hello from Toastiebun");
})
app.listen("127.0.0.1", 8000);
Development
# Unit Tests
bun test
# Mock Server @ http://localhost:3000
bun start :: 3000