Why is the Node ecosystem like this? Why do people continue to choose it for popular projects vs. anything else?
It is pretty much the lowest common denominator for code.
21–30 of 54 posts
Why is the Node ecosystem like this? Why do people continue to choose it for popular projects vs. anything else?
It is pretty much the lowest common denominator for code.
Why is the Node ecosystem like this? Why do people continue to choose it for popular projects vs. anything else?
It's the opposite of NIH syndrome. Need to left pad a string? Just import a library from some rando on the internet!
The answer to this was something called polyfills, a library that did something as simple as element.center() with just 500 lines of code to make it consistent on all browsers, and all the places you want to center that element are updated by the polyfill authors and your code doesn't need to be touched.
All the sites that weren't using good polyfills broke (or at least looked terrible) for days every time there was a new $browser update.
Since thats the javascript environment node was born into, the style was carried over by inertia and habit, for better and worse.
> NanoClaw is a secure, lightweight alternative to OpenClaw.
Why is the Node ecosystem like this? Why do people continue to choose it for popular projects vs. anything else?