0
0
mirror of https://github.com/honojs/hono.git synced 2024-12-01 11:51:01 +01:00
hono/example/basic/index.js

8 lines
142 B
JavaScript
Raw Normal View History

2021-12-17 09:16:26 +01:00
const Hono = require('../../src/hono')
const app = Hono()
2021-12-15 03:41:28 +01:00
2021-12-17 09:16:26 +01:00
app.get('/', () => 'Hono!!')
app.get('/hello', () => 'This is /hello')
app.fire()