Skip to content

Setup Node

ucan-lab edited this page Jun 3, 2023 · 1 revision

Node(npm)

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 version manager

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

How to use

$ cd src
$ npm install
$ npm run dev

tips: Fix Node version

packages.json

  // ...
  "engines": {
    "node": "20.x"
  }

.npmrc

$ echo 'engine-strict=true' > .npmrc