Yusuke Wada
Yusuke Wada
This is an implementation of the feature proposed in #2077 using stream. ### How to use Simply specify the maximum size. ```ts app.post( '/hello', bodyLimit({ maxSize: 15 * Unit.b, //...
### What is the feature you are proposing? We want to have React-like TypeScript types for HTML events like a `React.ChangeEvent`. For example, the simple one could be implemented as...
### What is the feature you are proposing? We have been using `class` instead of `className`, but still want to use `className` as well for React compatibility. So why not...
### What is the feature you are proposing? I don't think this is a very critical issue, but there is potential for improvement. Ref: https://x.com/saltyAom/status/1752977796274720863
JSDoc
### What is the feature you are proposing? We haven't written JSDoc for the Hono code. I used to think that maintaining JSDoc would be troublesome, especially since we also...
I think the new SSG features are great. However, we need to understand real world use cases and find the missing features and bugs. It would be good to create...
### What is the feature you are proposing? It would be great if `Suspense` worked well in SPA! Currently `Suspense` does not work in the content added by the SPA....
### What is the feature you are proposing? Currently, the SSG Helper does not fully support `Suspense`. For example, consider the following example, which returns JSX with AsyncComponet wrapped in...
This is just a PoC. There are many issues in making this a reality, but I think this is an interesting idea. ### Usage ```tsx import { Hono } from...
### What is the feature you are proposing? It would be useful if Promise resolved content could be cached by adding the cache attribute. ```tsx ```