ToastieBun is an express like bun based http server framework.
bun install toastiebun
// 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);
# Unit Tests
bun test
# Mock Server @ http://localhost:3000
bun start :: 3000