-
Notifications
You must be signed in to change notification settings - Fork 381
Setup Node
ucan-lab edited this page Jun 3, 2023
·
1 revision
I have a slow problem when npm install with Docker.
In the local environment, it is recommended to manage nodes using asdf instead of using containers
asdf is a useful tool that helps developers and engineers effectively manage multiple programming languages and tools and avoid version conflicts between different projects.
$ brew install asdf
Please adjust the settings to match your shell.
$ asdf --version
v0.11.3
$ asdf plugin add nodejs
$ asdf plugin list
nodejs
$ asdf install nodejs latest
$ asdf list nodejs
20.2.0
$ asdf local nodejs 20.2.0
$ cat .tool-versions
nodejs 20.2.0
$ node -v
v20.2.0
$ npm -v
9.6.6
$ cd src
$ npm install
$ npm run dev
packages.json
// ...
"engines": {
"node": "20.x"
}
.npmrc
$ echo 'engine-strict=true' > .npmrc