What version of package foo
will this command install?
npm install foo@next
The package.json and semver docs don't mention next
.
npm install
installs a package.
A package is:
...
d) a <name>@<version> that is published on the registry (see npm-registry) with (c)
e) a <name>@<tag> (see npm-dist-tag) that points to (d)
...
That is to say that next
is a version or tag published in your reference npm registry.