Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
It's just that you know these dependencies, Those are popular and obviously "Big" dependencies, you can't expect it to be a 10KB App.
-
Ah yes I love these tutorials "Get started with X with just 10 lines of code!" (by installing 100MB of dependencies)
-
Crismon2364yAn honest question:
Isnt that the same as going through your package.lock.json? I am baffled that these two I often use myself have that many dependencies. Or does your count include node modules that are included? -
Crismon2364yAnd btw thats not a wasted sunday at all. You can reuse that script maybe and include it in your pipeline which is a great insight when expanding your app.
-
Root825574yYou only looked laterally. You should also look vertically.
NodeJS runs on a JS engine (likely v8), which runs a virtual machine, which runs on an abstraction layer in the OS, which runs on several more abstraction layers, which runs on abstractions over the hardware, which in turn runs assembly — which the cpu translates into microcode, which finally runs on the hardware.
If you want something “lightweight,” write it in C or Assembly, and only rely on whatever libraries you must.
Related Rants
How I wasted my Sunday:
A programmer I know claimed that his Nodejs app was lightweight since it only relied on 2 dependencies (express and mongodb)
So I wrote a script to recursively transverse the npm dependency tree and count the number of dependencies there actually is
Installing those 2 packages alone means your app depends on 73 pieces of software in total
In conclusion, nothing written in Node is ever lightweight
Oh yeah, it was also Easter I guess
rant
dependencies
npm
node