...
You can install specific versions by running this command followed by the version you want. For example:
Option 1. Install
...
14.
...
16.
...
1
nvm install 1314.1416.1
Option 2. Install
...
14.
...
16.X
nvm will then install Node.js version 13.14.X
, where X
is the highest available version. At the time of writing, thesis 1, so you’ll have the 13.14.0
version installed on your system
nvm install 1314.1416
노드 버전 변경(Switching Between Versions)
...
Switch to the latest Node.js version:
nvm use node
Switch to Node.js version
...
14.
...
16.
...
1
:
nvm use 1314.1416.01
노드 default 버전 변경(Set to specific version as a default)
...