Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

agnos.is Forums

  1. Home
  2. Programmer Humor
  3. You typical Node project

You typical Node project

Scheduled Pinned Locked Moved Programmer Humor
67 Posts 47 Posters 16 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • candyman337@lemmy.worldC [email protected]

    What is that?

    N This user is from outside of this forum
    N This user is from outside of this forum
    [email protected]
    wrote last edited by
    #21

    If you import 1% of your module code, you only compile the actual used code. Tree shaking is removing dead code paths that aren't used.

    candyman337@lemmy.worldC 1 Reply Last reply
    22
    • N [email protected]

      If you import 1% of your module code, you only compile the actual used code. Tree shaking is removing dead code paths that aren't used.

      candyman337@lemmy.worldC This user is from outside of this forum
      candyman337@lemmy.worldC This user is from outside of this forum
      [email protected]
      wrote last edited by
      #22

      Ah ok gotcha

      1 Reply Last reply
      3
      • T [email protected]

        Saying "we can't in practice reduce the complexity of our dependency tree because we need happy clients and a pay check" is like saying "we can't in practice turn on the propeller because we need to get this airplane off the ground".

        B This user is from outside of this forum
        B This user is from outside of this forum
        [email protected]
        wrote last edited by [email protected]
        #23

        Clients don't care much about the dependency graph. They do care about delivering on time and sometimes not reinventing a bunch of wheels is crucial for that.

        T 1 Reply Last reply
        11
        • W [email protected]

          This applies to developers, too.

          External dependencies put end users at risk, so I avoid them as much as possible. If that means I have to rethink my design or write some boring modules myself, then so be it.

          K This user is from outside of this forum
          K This user is from outside of this forum
          [email protected]
          wrote last edited by
          #24

          Depends on the use case, and what you mean by “external dependencies”.

          Black box remote services you’re invoking over HTTP, or source files that are available for inspection and locked by their hash so their contents don’t change without explicit approval?

          Cuz I’ll almost entirely agree on the former, but almost entirely disagree on the latter.

          In my career:

          I’ve seen multiple vulns introduced by devs hand-writing code that doesn’t follow best practices while there were packages available that did.

          I have not yet seen a supply chain attack make it to prod.

          The nice thing about supply chain attacks though: they get publicly disclosed. Your intern’s custom OAuth endpoint that leaks the secret? Nobody’s gonna tell you about that.

          W 1 Reply Last reply
          8
          • S [email protected]

            But I don't NEED a wheel, I just need a tarp to put over this metal frame on my patio, and for some reason the tarp manufacturer attaches wheels and plane wings to it!?

            J This user is from outside of this forum
            J This user is from outside of this forum
            [email protected]
            wrote last edited by
            #25

            The package comes with all the bells and whistles but the final build only contains the tarp, if you import it right and tree shake it.

            M 1 Reply Last reply
            17
            • I [email protected]

              Which sounds like great, practical advice in a theoretical perfect world!

              But, the reality of the situation is that professionals are usually balancing a myriad of concerns and considerations using objective and subjective evaluations of what's required of us and quite often inefficiency, whether in the form of programmatic complexity or in the form of disk storage or otherwise, has a relatively low precedent compared to everything else we need to achieve if we want happy clients and a pay check.

              K This user is from outside of this forum
              K This user is from outside of this forum
              [email protected]
              wrote last edited by
              #26

              Lol yeah working in enterprise software for a long time, it's more like:

              1. Import what you think you need, let the CI do a security audit, and your senior engineers to berate you if you import a huge unnecessary library where you only need one thing
              2. Tree shake everything during the CI build so really the only code that gets built for production is what is being used
              3. Consistently audit imports for security flaws and address them immediately (again, a CI tool)
              4. CI

              Basically just have a really good set of teams working on CI in addition to the backend/frontend/ux/security/infrastructure/ whatever else teams you have

              1 Reply Last reply
              5
              • C [email protected]
                This post did not contain any content.
                L This user is from outside of this forum
                L This user is from outside of this forum
                [email protected]
                wrote last edited by
                #27

                Why write code, when someone else already wrote it?

                O 1 Reply Last reply
                14
                • B [email protected]

                  Clients don't care much about the dependency graph. They do care about delivering on time and sometimes not reinventing a bunch of wheels is crucial for that.

                  T This user is from outside of this forum
                  T This user is from outside of this forum
                  [email protected]
                  wrote last edited by
                  #28

                  As the guy people come to when they've spent days banging their heads against a dependency conflict problem rather than delivering value for the business, I wish the folks on my team would take the proverb "a little copying is better than a little dependency" to heart a little more.

                  M 1 Reply Last reply
                  4
                  • S [email protected]

                    Off topic but what's the point of a book that thick other than novelty? Would make much more sense to just separate into volumes

                    D This user is from outside of this forum
                    D This user is from outside of this forum
                    [email protected]
                    wrote last edited by [email protected]
                    #29

                    You get books like that for voluminous stuff like parliament debate transcripts for an entire parliamentary term.

                    They're generally one-off or only a handful printed and kept as archival records.

                    Almost noone would ever need the physical book, it exists as a physical tome to cite/reference.

                    1 Reply Last reply
                    3
                    • P [email protected]

                      Yeah. I have no idea what the answer is, just describing the nature of the issue. I come from the days when you would maybe import like one library to do something special like .png reading or something, and you basically did all the rest yourself. The way programming gets done today is wild to me.

                      C This user is from outside of this forum
                      C This user is from outside of this forum
                      [email protected]
                      wrote last edited by [email protected]
                      #30

                      I'm not sure its a problem in of itself, but i agree it definitely enables a problem. Between "is-even" and vibe coding, modern software engineering is in a very sorry state.

                      P 1 Reply Last reply
                      1
                      • C [email protected]

                        I'm not sure its a problem in of itself, but i agree it definitely enables a problem. Between "is-even" and vibe coding, modern software engineering is in a very sorry state.

                        P This user is from outside of this forum
                        P This user is from outside of this forum
                        [email protected]
                        wrote last edited by
                        #31

                        Yeah. I feel like in a few years when literally nothing works or is maintainable, people are going to have a resurgent realization of the importance of reliability in software design, that just throwing bodies and lines of code at the problem builds up a shaky structure that just isn't workable anymore once it grows beyond a certain size.

                        We used to know that, and somehow we forgot.

                        1 Reply Last reply
                        3
                        • J [email protected]

                          The package comes with all the bells and whistles but the final build only contains the tarp, if you import it right and tree shake it.

                          M This user is from outside of this forum
                          M This user is from outside of this forum
                          [email protected]
                          wrote last edited by
                          #32

                          This person nodes…

                          1 Reply Last reply
                          7
                          • T [email protected]

                            As the guy people come to when they've spent days banging their heads against a dependency conflict problem rather than delivering value for the business, I wish the folks on my team would take the proverb "a little copying is better than a little dependency" to heart a little more.

                            M This user is from outside of this forum
                            M This user is from outside of this forum
                            [email protected]
                            wrote last edited by
                            #33

                            Amen.

                            I have sorted out so many JS dependency tangles for my team members, both front end AND back end, that I am loathe to import anything I don’t absolutely have no choice about.

                            I will rewrite some stuff before I import it…

                            1 Reply Last reply
                            3
                            • K [email protected]

                              Depends on the use case, and what you mean by “external dependencies”.

                              Black box remote services you’re invoking over HTTP, or source files that are available for inspection and locked by their hash so their contents don’t change without explicit approval?

                              Cuz I’ll almost entirely agree on the former, but almost entirely disagree on the latter.

                              In my career:

                              I’ve seen multiple vulns introduced by devs hand-writing code that doesn’t follow best practices while there were packages available that did.

                              I have not yet seen a supply chain attack make it to prod.

                              The nice thing about supply chain attacks though: they get publicly disclosed. Your intern’s custom OAuth endpoint that leaks the secret? Nobody’s gonna tell you about that.

                              W This user is from outside of this forum
                              W This user is from outside of this forum
                              [email protected]
                              wrote last edited by [email protected]
                              #34

                              I didn't think I would have to spell this out, but when I wrote "as much as possible", I was acknowledging that some libraries are either too complex or too security-sensitive to be reasonably homebrewed by the unqualified. (Perhaps "as much as reasonably possible" would have been better phrasing.) Where the line lies will depend on the person/team, of course, but the vast majority of libraries do not fall into that category. I was generalizing.

                              And yes, some third-party libs might get so much public scrutiny as to be considered safer than what someone would create in-house, depending on their skills. But safety in numbers sometimes turns out to be a false assumption, and at the end of the day, choosing this approach still pushes external risks (attack surface) onto users. Good luck. It hardly matters to the general point, though, because most libs do not have this level of scrutiny.

                              Let's also remember that pinning dependencies is not a silver bullet. If I didn't trust someone to follow "best practices", I don't think I would trust their certification of a third-party library hash any more than I would trust their own code.

                              With all that said, let me re-state my approach for clarity:

                              • I minimize dependencies first. Standard libraries are great for this.
                              • When something more cannot reasonably be avoided, I choose very carefully, prioritizing the safety of my users over my own convenience.
                              • Sometimes that means changing my original design, or spending my time learning or building things that I hadn't planned to. I find the results to be worth it.
                              1 Reply Last reply
                              3
                              • dohpaz42@lemmy.worldD [email protected]

                                Until those wheels contain malware and spyware.

                                C This user is from outside of this forum
                                C This user is from outside of this forum
                                [email protected]
                                wrote last edited by
                                #35

                                Or bugs that you only work out much later on.

                                A 1 Reply Last reply
                                1
                                • T [email protected]

                                  Be the change you want to see in the world, people. Don't use any Node (or Rust or Python or Java or whatever) modules that have more dependencies than they absolutely, positively, 100%, for real have to. It's really not that hard. It doesn't have to be this way.

                                  C This user is from outside of this forum
                                  C This user is from outside of this forum
                                  [email protected]
                                  wrote last edited by [email protected]
                                  #36

                                  Too late, is_even_rs now depends on tokio

                                  1 Reply Last reply
                                  7
                                  • D [email protected]

                                    Feels like a lot of “not inventing the wheel” - which is good? There are plenty of good wheels out there.

                                    M This user is from outside of this forum
                                    M This user is from outside of this forum
                                    [email protected]
                                    wrote last edited by
                                    #37

                                    Yes, but my moon rover's wheels need to fulfill different requirements.

                                    1 Reply Last reply
                                    0
                                    • D [email protected]

                                      Feels like a lot of “not inventing the wheel” - which is good? There are plenty of good wheels out there.

                                      F This user is from outside of this forum
                                      F This user is from outside of this forum
                                      [email protected]
                                      wrote last edited by
                                      #38

                                      The problem is "I need function, library with 1000 functions has function, include." Library's 823rd function turns out to have a vulnerability.

                                      bleistift2@sopuli.xyzB 1 Reply Last reply
                                      9
                                      • candyman337@lemmy.worldC [email protected]

                                        What is that?

                                        zea_64@lemmy.blahaj.zoneZ This user is from outside of this forum
                                        zea_64@lemmy.blahaj.zoneZ This user is from outside of this forum
                                        [email protected]
                                        wrote last edited by
                                        #39

                                        Dead code elimination but with a different name for some reason

                                        Q 1 Reply Last reply
                                        9
                                        • C [email protected]
                                          This post did not contain any content.
                                          M This user is from outside of this forum
                                          M This user is from outside of this forum
                                          [email protected]
                                          wrote last edited by
                                          #40

                                          Except in the picture on the left, someone's actually reading it.

                                          Something's gone wrong if you're looking in the node_modules folder.

                                          I 1 Reply Last reply
                                          4
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups