DEV Community

Discussion on: Should browsers still allow users to disable JavaScript?

Collapse
 
jvanbruegge profile image
Jan van Brügge

Just for performance reasons, you shouldnt require Javascript for your side to load. If you write your app in JS, get Node to render it on the server for you like in the old days.

I really get annoyed when a page just presents a basic shell and starts loading content with JS, for no particular reason. Design your websites so they are usable even without JS, it's not that hard

Thread Thread
 
adhocore profile image
Jitendra

apps delegating heavy lifting to browsers is also for saving server resources :)