top | item 45684232

(no title)

beardbound | 4 months ago

I don't have much of an opinion on React as a library, although they do use it for our web frontend at my work. However something I noticed in the past when I was doing some web dev work out of AUS was that some websites would have incredibly buggy behavior. Keep in mind this was around 10 years ago so some things might have changed. After doing some debugging it turned out that some of the libraries were fairly large, and they didn't have co-located CDN's in the area. The specific ones in that were jQuery. That caused some of the JS libraries to not fully download, or just some of them to time out.

That's a mostly fixable problem with having something like a pipeline that minifies the libraries and has them being downloaded from somewhere closer to your users, or putting them on a better CDN, but a lot of people don't have the time/option/money to do that. It was pretty obvious in that instance since a lot of that was wordpress development at the time and things like plugins/extensions usually don't bother. When I was doing similar development in the US I never saw any of that kind of behavior since so many libraries at the time were hosted on the West Coast where I lived. Also most developers I know aren't super resource limited on their hardware (desktop/laptop or mobile), which might be a factor.

I'm not sure if this is what people are referring to, but just something to consider.

discuss

order

flufluflufluffy|4 months ago

That’s a good point. I guess I am privileged to live in a well connected area in the states.