Skip to content

Instantly share code, notes, and snippets.

@yusukebe
Created November 11, 2023 15:54
Show Gist options
  • Save yusukebe/1d2dab7747624d54d122d50db58c7d6a to your computer and use it in GitHub Desktop.
Save yusukebe/1d2dab7747624d54d122d50db58c7d6a to your computer and use it in GitHub Desktop.
import { Hono } from 'npm:hono@3.10.0-rc.2'
const app = new Hono()
app.get('/', (c) => {
return c.text('Hi')
})
Deno.serve(
{
port: 3003
},
app.fetch
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment