atoko
atoko
HHono
Created by M on 3/14/2025 in #help
createRoute Wrapper typing
the default Hono generic is Hono<BlankEnv, BlankSchema, ...>
13 replies
HHono
Created by M on 3/14/2025 in #help
createRoute Wrapper typing
It has to do with the defaults on Hono<>, I think. You have to ES =infer.ExtractSchema<Hono>, EE = infer.ExtractEnv<Hono> every time you have another layer of generic, because you need to pass down Hono<ES, EE, string>
13 replies
HHono
Created by M on 3/14/2025 in #help
createRoute Wrapper typing
Not sure if it will completely fix it, but prefer to use “unknown” over “any”. Unknown = could be anything, but it’s still some type Any = opt out of types completely
13 replies
HHono
Created by JustKira on 3/14/2025 in #help
How to Connect to Services using context
You want the Context Api, specifically .set/.get https://hono.dev/docs/api/context note that the middleware runs per request, so you need to have the getDb awaited outside of the body of the middleware.
19 replies
HHono
Created by atoko on 3/11/2025 in #help
Component Library SSG
Updates for those interested. I gave up on that specific library, but was still having module issues. I solved these by using async imports and use() hooks, these work great and will bundle correctly in case you want to load something only on the client.
2 replies