Dumb question, from someone who doesn't work with Node.js: Why are there 32 versions of it?
Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
11–20 of 69 posts
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#12Dumb question, from someone who doesn't work with Node.js: Why are there 32 versions of it?
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#13Frankly, 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…
1) never change apis even if you were wrong or you have more opportunities or 2) know everything beforehand and implement the api perfect
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#14Frankly, 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
#15Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#16Dumb question, from someone who doesn't work with Node.js: Why are there 32 versions of it?
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#17Frankly, 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
#18This is a utility I build to be able to make sure my JS CLI's actually work across the version I want to support. Right 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 lo…
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#19Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#20Very nice project. I built something similar for PHP: https://github.com/vectorface/dunit