Replies: 1 comment
-
As noted on this page, Bun does not support |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Why the app crach when i run the server:
I use Bun + Hono 3.12.8
This is the Code I use (index.ts):
`
import { Hono } from 'hono'
import { compress } from 'hono/compress'
const app = new Hono();
app.use('*', compress());
app.get('/', (c) => c.text(
welcome to my APP!
));export default {
port: Bun.env.PORT,
fetch: app.fetch,
}
`
and this the result after i enter to the app url:
Beta Was this translation helpful? Give feedback.
All reactions