/bungee

A simple library for creating web applications using Bun JavaScript Runtime.

Primary LanguageTypeScript

Bungee

A simple library for creatign web applications using the Bun JavaScript Runtime. Bungee has been inspired by Node's Express library.

Usage

const app = Bungee();

app.get("/", (req) => {
    const { query } = req;
    return new Response(`Hello ${req?.name}`)
})

app.start("0.0.0.0", 8080)
wget localhost:8080/?name=World
> Hello World

Upcoming features

  • Path Variables (Params)
  • Middlewares
  • Routers