this post was submitted on 06 Aug 2023
1 points (100.0% liked)

Programming

17101 readers
101 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
 

Steps to reproduce:

  1. Start a Node project that uses at least five direct dependencies.
  2. Leave it alone for three months.
  3. Come back and try to install it.

Something in the dependency tree will yell at you that it is deprecated or discontinued. That thing will not be one of your direct dependencies.

NPM will tell you that you have at least one security vulnerability. At least one of the vulnerabilities will be impossible to trigger in your particular application. At least one of the vulnerabilities will not be able to be fixed by updating the versions of your dependencies.

(I am sure I exaggerate, but not by much!)

Why is it like this? How many hours per week does this running-to-stay-in-place cost the average Node project? How many hours per week of developer time is the minimum viable Node project actually supposed to have available?

top 5 comments
sorted by: hot top controversial new old
[–] jeffhykin@lemm.ee 2 points 1 year ago

Deno solves this problem :)

[–] Sigmatics@lemmy.ca 1 points 1 year ago

Because 99% of Node projects are web related, and if something's vulnerable on the web it won't take long to be abused

[–] bouncing@partizle.com 0 points 1 year ago (1 children)

At least part of it is that JavaScript is not really a batteries included language like Python or Java to even PHP.

You can’t really do anything productive without relying on a third party library.

[–] lemmyvore@feddit.nl 0 points 1 year ago (1 children)

All the languages you mentioned have some core APIs included and need to rely on third party libraries for more.

[–] bouncing@partizle.com -1 points 1 year ago

Yes, that's true, but JavaScript has very few core APIs aside from basic DOM manipulation. Even things like comparing timezones requires a third party dependency, for example.