Earlier quoted context omitted.
Tangential, but I've only heard about BigQuery from people being surprised with gargantuan bills for running one query on a public dataset. Is there a "safe" way to use it with a cost limit, for example?
Yes you can set price caps. The cost of a query is understandable ahead of time with the default pricing model ($6 per TB of data processed in a query). People usually get caught out by running expensive queries recursively. BigQuery is very cost effective and can be used safely.
Which NPM package has the largest version number?
51–60 of 80 posts
Re: Which NPM package has the largest version number?
#52So 19494 is the largest? That's far lower than I expected. There's nobody out there that has put a date in a version number (e.g., 20250915)?
Any package version that didn't follow the x.y.z format was excluded, and any package that had less published versions than their largest version number was excluded (e.g. a package at version 1.123.0 should have at least 123 published versions)
Re: Which NPM package has the largest version number?
#53Earlier quoted context omitted.
You might want to try a different storing strategy. 0.25 is above 0.4. These are, I believe, what are called in Unix flags "human numbers".
I understood the list is ordered by biggest number, aka 189 > 172 > 161 > 159 > 120
Edit: nevermind, I misunderstood your point
Re: Which NPM package has the largest version number?
#54So 19494 is the largest? That's far lower than I expected. There's nobody out there that has put a date in a version number (e.g., 20250915)?
Well, we are looking at npm packages, where every package is supposed to follow semantic versioning. The fact that we don't have date as version number means everyone is a good citizen. https://docs.npmjs.com/about-semantic-versioning
Re: Which NPM package has the largest version number?
#55Earlier quoted context omitted.
Each version is likely a new vulnerability that got submitted, doesn't seem that weird.
Shouldn't vulnerabilities be "data" in this context? You bump the vulns database but keep the code at the same version if the logic is the same.
Re: Which NPM package has the largest version number?
#56Earlier quoted context omitted.
Tangential, but I've only heard about BigQuery from people being surprised with gargantuan bills for running one query on a public dataset. Is there a "safe" way to use it with a cost limit, for example?
Yes you can set price caps. The cost of a query is understandable ahead of time with the default pricing model ($6 per TB of data processed in a query). People usually get caught out by running expensive queries recursively. BigQuery is very cost effective and can be used safely.
Re: Which NPM package has the largest version number?
#57Re: Which NPM package has the largest version number?
#58So 19494 is the largest? That's far lower than I expected. There's nobody out there that has put a date in a version number (e.g., 20250915)?
Re: Which NPM package has the largest version number?
#59Bigliest, boomiest version is 3735928560 from https://metacpan.org/dist/Acme-Boom
Re: Which NPM package has the largest version number?
#60Earlier quoted context omitted.
Shouldn't vulnerabilities be "data" in this context? You bump the vulns database but keep the code at the same version if the logic is the same.
If it's baked into the tool (can run offline) then it would be unavoidable, need a new version to get a new release on the package manager. 1.2.3 -> 1.2.3+1 (or +anything, date, whatever) could arguably be idiomatic semver though - that's what you do for packaging changes, like updating the description or categories to file it under etc. without actually changing the program.
And yet you need internet access when running the package with npx, even though the package is already locally installed.
At least, I can't use npx on so e of my VMs which do not have access to the internet. It just takes forever to atart (and I get annoyed after some minutes).