Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
21–30 of 69 posts
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#22Would you implement binary search? A feature like git-bisect could be usefull to find breaking changes.
Would appreciate that a lot and thanks for the feedback.
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#23Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#24Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#25Dumb 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
#26Dumb question, from someone who doesn't work with Node.js: Why are there 32 versions of it?
$ nvm ls-remote | wc -l
303
Most of those are patch releases. There are 47 minor releases and 6 major releases: $ nvm ls-remote | grep -oE 'v\d+\.\d+' | uniq | wc -l
47
$ nvm ls-remote | grep -oE 'v\d+' | uniq | wc -l
6
Most language implementations probably have similar number of releases.Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#27Frankly, 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…
What do you recommend for how we could do it better?
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#28We sacrificed that for syntactic sugar.
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#29This is why I hate ES6. JavaScript used to be a write once, run anywhere language. We sacrificed that for syntactic sugar.
Re: Show HN: Test your JavaScript modules simultaneously in 32 different versions of Node.js
#30This is why I hate ES6. JavaScript used to be a write once, run anywhere language. We sacrificed that for syntactic sugar.
So ES6 is not the problem.