General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
TommyJ
Theo - t3․gg
comments
Comments by "TommyJ" (@ImperiumLibertas) on "The \"SQL In React\" Drama" video.
I think server side rendering in general is a mistake. The majority of end user devices are very fast at rendering web pages. It leaves all of that compute power entirely unutilized. The last thing I want in my UI is for a backend change to cause a cascading affect throughout my application. In angular we separate out an api mapping layer specifically to handle server communication and map it to a front end contract so when a backend change is made only the mapper layer is affected the majority of the time. I don't want my UI to be exposed to backend complexity. Nothing to do with "separation of concerns." Instead we are isolating and segregating the complexity of the two applications.
2