A tale of webpage speed, or throwing away React
solovyov.net
A tale of webpage speed, or throwing away React
1–10 of 319 posts
Re: A tale of webpage speed, or throwing away React
#2Re: A tale of webpage speed, or throwing away React
#3Is this approach similar to Rails Turbolinks?[0] [0] https://github.com/turbolinks/turbolinks
Re: A tale of webpage speed, or throwing away React
#4Re: A tale of webpage speed, or throwing away React
#5Re: A tale of webpage speed, or throwing away React
#6In the article though he does not mention whether React with SSR is an option?
Re: A tale of webpage speed, or throwing away React
#7So, the problems here may have had more to do with the clojurescript stack (which I am not much familiar with), or author's lack of familiarity with javascript optimization strategies than react, SPA model or client side rendering.
Re: A tale of webpage speed, or throwing away React
#8That 5/100 score is very very strange. Have you tried migrating your react code base to NextJs?
Re: A tale of webpage speed, or throwing away React
#9Re: A tale of webpage speed, or throwing away React
#10This is some strange reasoning that I have yet to seen myself. If you can do the hovers states/drop down menus in CSS, why not do them in CSS, even if you're using React? Seems to be blaming something on a library that the library has no care about in the first place (which to be frank, seems relatively common in web dev circles).
> In the worst case, we would serve you 2.5MB of minified (non-gzipped) JS
And holy guacamoly, how do you end up with this?! Seems that something was surely wrong in the compilation options, forgetting to mangle names or something, missing dead-tree elimination maybe?