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?

  • LaSaucisseMasquee@jlai.lu
    link
    fedilink
    arrow-up
    32
    arrow-down
    2
    ·
    edit-2
    11 months ago

    If you set the versions of your dependencies in the package.json file, you’ll reinstall exactly the same ones.

    You may get new vulnerability warnings popping up, but what is the issue here ? You’d rather not be aware that a vulnerability has been found since your last development ?

    If you are not happy with others modules, dev your own and no one will let you know about security issues 😝

    • planish@sh.itjust.worksOP
      link
      fedilink
      arrow-up
      11
      ·
      11 months ago

      I’m struggling to understand how there can be so many security flaws, even in things that don’t seem to matter for security. I think the bar for a security problem might be too low; a lot of these look like footguns that could give my package a security hole, rather than genuine security flaws in the packages they are reported on.

      Here’s a progress bar package with a “high” security vulnerability because it contains an internal utility that merges objects and doesn’t stop you writing to the prototype. Did the progress bar package ever promise to provide an object merge function that was safe to use on untrusted user input?

      Here’s a notification UI element that bills using HTML in your notification messages as a feature. It has a “medium” level “XSS” security vulnerability where the message parameter is not sanitized to remove HTML. A CVE was issued for this.

      Here’s an arbitrary code execution vulnerability in sqlite3! High severity! The bug is that, if you tell sqlite3 to substitute an object into an SQL statement, it will run the ToString() method on the object. If an evil hacker has broken into your lead developer’s house and written a malicious ToString() method into one of the classes of object you use as a database query parameter, then that code would run! The fix here was, instead of letting the normal Javascript stringification rules apply, to hardcode all objects to be inserted into the database as “[object Object]”, because surely that is what the programmer meant to store.

      • nick@campfyre.nickwebster.dev
        link
        fedilink
        arrow-up
        8
        ·
        11 months ago

        You don’t need to do anything when you get a security advisory if you’re not impacted or the risk is acceptable. They’re just there to advise you.

        • atheken@programming.dev
          link
          fedilink
          arrow-up
          8
          ·
          11 months ago

          The problem is that when you are alerted for trivial/non-actionable stuff it contributes to “alert-fatigue” and you just start ignoring all of the alerts.

          As far as I’m aware, there’s also no way to triage an alert from an install other than to upgrade the offending package, which means you can’t really discriminate on the basis of “acceptable risk”

    • heeplr@feddit.de
      link
      fedilink
      arrow-up
      12
      arrow-down
      8
      ·
      11 months ago

      You’d rather not be aware that a vulnerability has been found since your last development ?

      I’d rather develop with dependencies that don’t have so many vulnerabilities.

        • heeplr@feddit.de
          link
          fedilink
          arrow-up
          5
          ·
          edit-2
          11 months ago

          That’s why people came up with defensive programming and functional correctness.

          Just seems to be difficult for the webdev industry. Seems easier to push fixes from time to time.

        • heeplr@feddit.de
          link
          fedilink
          arrow-up
          4
          arrow-down
          1
          ·
          11 months ago

          If you mean web development, you’re right.

          If you mean computer science, then I’d say that webdevs have little in common with the industry that came up with stuff like ADA or functional correctness.

    • AA5B@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      11 months ago

      If you set the versions of your dependencies in the package.json file

      Or if you leave that alone, and update your package-lick.json so can install exact dependencies with npm ci