5

Getting an existing NodeJS project up and running on Windows IS A FUCKING NIGHTMARE

Comments
  • 4
  • 1
    Docker Luke
  • 1
    Never had that issue. What happened?
  • 6
    getting anything running is a nightmare now

    it can't just be my brain damage, I swear
  • 1
    and every time some application doesn't run or is bad I wanna rewrite it but not bad

    but then I think how would I make money off this

    and all the answers make the application bad

    so I don't bother

    it's ok I have like 50 projects planned anyway that i'd do even if they made me no money so it's not like I have a lack of work

    *pulls hair out*

    what incentive do developers even have to make good software? the ecosystems you build on are shit because they want money over everything else even themselves. we've strayed so far from god
  • 0
    Actually never had this experience. Just git pull and npm i works every time
  • 0
    @Ranchonyx @AlgoRythm

    I have an electron app, which to build for Win,or Linux/MacOS have different dependencies, which can neither be installed at the same time nor from all OS.

    So if you want to quickly try out the App you've coded on Mac on Win in a VM, you need to PR your changes into a windows branch, pull inside WIndows, and then run it. For building, you can / have to use docker/CI pipeline.

    One of the worst things NPM ever did was allow packages with binaries that have INSTALL-TIME OS-dependencies. Hell, why can't I just put all the Deps I need for ANY OS in there, and everyone just takes what they need? NO, I NEED TO INSTALL THE WIN DEP INSIDE WINDOWS for the builder to work, wtf ?!
  • 0
    Have you tried Deno?
  • 0
    @n1cK1337 Ohh, you're talking binary packages! Now the whole story makes sense...
Add Comment