-
-
Notifications
You must be signed in to change notification settings - Fork 350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
server side rendering? #217
Comments
I do have a good idea to do SSR, but it's not easy Do you know react server component? It has no states and events and does not need hydration. In the past, SSR traverses vdom to generate html strings, which has poor performance in the server. But if we compile JSX into bytecodes, there will be a great performance improvement. This is feasible on the premise that the component is the same as the server component and has no state. In other words, we can do ssr of server component at the same time, which has four advantages:
@trueadm has done similar work, and I'd like to try it. Maybe it's a good idea. |
@jantimon I am paying close attention to react fizz. Its implementation is very interesting and suitable for fre. |
cool :) looking forward on your findings |
Any new ideas yet? |
@tomByrer I do have a lot of ideas here, but it takes time and I may need a summer vacation.
I'm a little busy recently, so the progress will be slow. If someone helps me, that would be great. Thank you. |
are there some poor performance examples about renderToString? |
does fre provide ssr and hydration like preact and react?
The text was updated successfully, but these errors were encountered: