mirror of
https://github.com/honojs/hono.git
synced 2024-11-22 11:17:33 +01:00
dfbd717263
* chore: rename `runtime_tests` to `runtime-tests` * fixed GitHub workflow
26 lines
521 B
TypeScript
26 lines
521 B
TypeScript
import { upgradeWebSocket } from '../../src/adapter/cloudflare-workers'
|
|
import { env, getRuntimeKey } from '../../src/helper/adapter'
|
|
import { Hono } from '../../src/hono'
|
|
|
|
const app = new Hono()
|
|
|
|
app.get('/', (c) => c.text(`Hello from ${getRuntimeKey()}`))
|
|
|
|
app.get('/env', (c) => {
|
|
const { NAME } = env<{ NAME: string }>(c)
|
|
return c.text(NAME)
|
|
})
|
|
|
|
app.get(
|
|
'/ws',
|
|
upgradeWebSocket(() => {
|
|
return {
|
|
onMessage(event, ws) {
|
|
ws.send(event.data as string)
|
|
},
|
|
}
|
|
})
|
|
)
|
|
|
|
export default app
|