How do I specify a local version of Node for a project?
The npm registry includes a package called “node”. It is a regular npm package that contains only the Node.js binary.
So, in your directory in question run:
npm install [email protected] --save-exact
Then, put a script in your package.json
as follows:
"scripts": {
"v": "node -v"
}
To verify, run node -v
in your terminal in the root of the project and you should see the version you have set on your machine. Compare that by running npm run v
and you should see the version you have set for the project. This way, you can seamlessly move about your file system and execute various builds without changing your global node configuration.
In principle, every executable file that arrives with an npm package is linked to the local binaries directory within the project. It means that when we install such a package, we could find a link for its executable file inside.
Note: set node engine to advise - "this field is advisory only and will only produce warnings when your package is installed as a dependency."
NVM + .nvmrc
If you are using NVM like this, which you likely should, then you can indicate the nodejs version required for given project in a git-tracked .nvmrc
file:
node --version > .nvmrc
or:
echo v10.15.1 > .nvmrc
This does not take effect automatically on cd
, which is sane: the user must then do a:
nvm use
and now that version of node will be used for the current shell.
You can list the versions of node that you have with:
nvm list
.nvmrc
is documented at: https://github.com/creationix/nvm/tree/02997b0753f66c9790c6016ed022ed2072c22603#nvmrc
Tested with NVM 0.33.11.
Heroku does respect package.json engines:
Worth mentioning, as documented here, Heroku does play it nice and obey the engines:
entry e.g.:
"engines": {
"node": "14.17.0",
"npm": "6.14.13"
},
So you should Always, Always set that to what you are using locally.
I believe that the engines and engineStrict are for when the package is being installed (via npm), not when you're trying to execute something with node. These options warn/prevent users from installing a package that is not designed to work (or compatible) with the node version they are currently using.