Alexey Taktarov
Alexey Taktarov
Looks like 1) is no longer an issue, it was fixed here https://github.com/honojs/hono/pull/3241 Could you try to update your example and see if this error still occurs with the latest...
> Not sure if you are accepting new code, based on the last open PRs We are accepting new code! The current open PRs are quite difficult to merge, since...
It's not possible at the moment unfortunately. The `staticLocationHook` has been deprecated because it stopped working when we switched to `useSyncExternalStore`. The new approach to use SSR is to use...
Hey, sorry for the late reply. The `regexparam` library (which wouter uses internally for pattern matching) has an `inject()` function that does something similar: ```js import { inject } from...
Hi @KutnerUri thanks for your contribution. The default parser is actually just a function from: https://github.com/lukeed/regexparam Would it make sense to mention it in the README instead of exporting (e.g....
Wouter doesn't support events yet, as an alternative I can suggest listening to changes of the current location: ```ts const [location] = useLocation() useEffect(() => { // some additional logic...
Closing this for now. The approach @nikita-starostin suggested is actually quite good!
That's good point! What do you think about this API: ```js const { hook, searchHook } = memoryLocation({ path: '/foo?key=value' }); // or more explicit const { hook, searchHook }...
Added this to our feature backlog.
> I'll take this if you'd like! Sure, thanks for helping.