top | item 45527592

(no title)

deepriverfish | 4 months ago

how do you manage the application state with Hono? I saw their home page and it didn't mention anything about it.

discuss

order

WA|4 months ago

Hono is a server-side framework like Express. So same way like you handle application state in most server-side multi-page web apps: You just fetch whatever you need from the DB per request.

"State management" really isn't that much of an issue on the server. Only on clients, when you need to map state changes to DOM updates.