Skip to content

Instantly share code, notes, and snippets.

@yusukebe
Created July 6, 2022 01:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yusukebe/0822c1629fc05027dcc8302ddaafc932 to your computer and use it in GitHub Desktop.
Save yusukebe/0822c1629fc05027dcc8302ddaafc932 to your computer and use it in GitHub Desktop.
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => {
return c.html('Hello Bun!')
})
export default {
port: 3000,
fetch: (req) => app.fetch(req),
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment