Anyone have articles or blogs about ethical web programming (JS related) you appreciate?
Perhaps something not on Medium?
I'm struggling to find balanced thought on using modern JS frameworks for web app creation. It seems like most people are purists (no modern JS frameworks) or all in (node for /ALL/ the things!)
Something nuanced would be appreciated.
@brian node components are usually of much finer granularity than libraries of most other programming environments (with the notable exception of #forth) and writing lots of small modules is the preferable way. I tend to factor out a module whenever my code exceeds one or two screens. Yes, that creates a dependency mess and the package management could be better, but I tend to prefer that paradigm to a more monolithic one.