Hacker News new | ask | show | jobs
by pennaMan 2686 days ago
so it's a next.js clone?
1 comments

All the business logic of the components (i.e. event handlers, lifecycle hooks, setState() calls, etc.) run on the server, unlike just the initial server-side rendering that Next.js provides. The server maintains the state of all components, and when an event occurs, the client notifies the server to run the appropriate event handler.