Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
victorbjelkholm.github.io
Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
1–10 of 69 posts
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#2Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#3Right now, the tool also works across any language where there is docker images with versions, not just for JavaScript/NodeJS. It's enough with having a Dockerfile with $VERSION (that will be replaced by the tool) and changing the test command. I will make this easier in the future.
Thanks for taking a look and please let me know what you think about it.
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#4Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#5Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#6This is definitely something that's needed, by myself, and many other developers. Determining module compatibility across versions is always a pain. Great tool!
Yeah, it was needed by myself as well, so I had to scratch my own itch for a while.
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#7Frankly, I feel like this is an indictment of all software development, everywhere. When you need to do this kind of a thing, you are doing it wrong. I do not mean I am doing it any better, I have the same issues e.g. working on Android, but there are probably some fundamental things we could be doing to avoid all these horrible symptoms. Things like NixOS come to mind, where people are actively researching and exper…
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#8Frankly, I feel like this is an indictment of all software development, everywhere. When you need to do this kind of a thing, you are doing it wrong. I do not mean I am doing it any better, I have the same issues e.g. working on Android, but there are probably some fundamental things we could be doing to avoid all these horrible symptoms. Things like NixOS come to mind, where people are actively researching and exper…
Sometimes, for you to focus on other (what for you is important), you need to throw together some rube goldberg thing to be able to move forward.