Yusuke Wada

Results 1706 comments of Yusuke Wada

Hi @carlos-duran, Whether to use `[tsx](https://github.com/privatenumber/tsx)` in production depends on you. But, I don't recommend it. You can transpile to pure JavaScript files using `tsc` or `esbuild` and then run...

Hi @JoshZA It works well on my env:

Maybe duplicated to https://github.com/honojs/node-server/issues/84

@thecotne > @yusukebe should `c.env` be deprecated and all first party packages migrated to use `hono/adapter` ? No. We have to recommend using `c.env` for the Cloudflare Workers/Pages. It is...

Hi @rafaell-lycan, To handle Node.js specific matters, I'm considering passing `IncomingMessage` as part of the Bindings in `@hono/node-server`. This way, you can access it with `c.env.IncomingMessage`: ```ts import { Hono...

@rafaell-lycan I'm not super familiar with Node.js. The mental model of Node.js is different from the Web Standard API used by Cloudflare Workers and others. These runtimes don't use the...

Hi @rafaell-lycan I think you can do it. I think you can declare that middleware on top of the handlers/middleware. The following Logger middleware implementation would be helpful: https://github.com/honojs/hono/blob/main/src/middleware/logger/index.ts

@ryuapp This feature requires Hono v4. Since `@hono/node-server` has some v3 users, it may be better not to merge it now; if more users use v4, we can specify v4...

This can be closed. Thanks!

HI @miyamonz ! Thank you for the PR. This is a good feature. I've leaved some comments. Please check them!