Skip to main content
Deno 2 is finally here 🎉️
Learn more

bingo

仿koa语法的deno版web框架

Hello Bingo

import Bingo from 'https://deno.land/x/bingo@0.0.2/server.ts'
const app = new Bingo();

// response
app.use(ctx => {
  ctx.body = 'Hello Bingo';
});

app.listen(3000);