Yusuke Wada
Yusuke Wada
This has been fixed by #2512 . Thanks!
Hi @boojum How about specifying the base URL? ```ts const url = new URL(c.req.url) const baseUrl = `${url.protocol}//${url.hostname}` const client = hc(baseUrl, { fetch: c.env.hello.fetch.bind(c.env.hello) }) const res = await...
Hi @cometkim This is good! But please wait until I look over the details!
@cometkim Thanks!
Hi @SHAIKARSHADA @EdamAme-x is right. The value of `c.set`/`c.get` changes with each request. And, `c.set('hello', '12345')` does not execute if `GET /get` because the routing path is `POST /set`. ```ts...
I think we can close this issue. Thanks.
Hi @askorupskyy Does it generate a `d.ts` file defining the types? I want to use it and see it!
Yes. I see that @SaltyAom is working hard on TypeScript, and Elysia is performing very well. It's awesome. I'd love his advice if he don't mind, but I know he...
I could publish it with this setting and the diff. But we have to consider making the workflow to publish. https://jsr.io/@hono/do-not-use-this ```json { "name": "@hono/do-not-use-this", "version": "0.0.0", "compilerOptions": { "lib":...
Hi @riywo You are certainly right! It could have unexpected behavior. I'll give it some thought, but I think I might prefer the method you suggested. @usualoma How do you...