Hacker News new | ask | show | jobs
by deepriverfish 253 days ago
how do you manage the application state with Hono? I saw their home page and it didn't mention anything about it.
1 comments

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.