.png)
Node.js 설치 방법(Windows)
소개
이번에는 Node.js의 버전 관리 도구 Nodist를 사용하여 설치하는 방법을 작성합니다!
나중에 @angular/cli를 넣기 때문에 Node.js의 버전을 12.18.2로 지정하고 있습니다.
(Node.js 공식 사이트의 현재 권장 버전 12.19.0이라면 @angular/cli 설치에 실패했기 때문에)
목차
1.Nodist 설치
Nodist 설치 사이트





이것으로 Nodist 설치가 완료!
2. Nodist를 사용하여 Node.js 설치

$ nodist -v
0.9.1
$ nodist dist
.
.
14.12.0
14.13.0
$ nodist use 12.18.2
12.18.2 [===============] xxxxx/xxxxx KiB 100% 0.0s
12.18.2
$ nodist
(x64)
> 11.13.0 (global: 11.13.0)
12.18.2
$ nodist global 12.18.2
12.18.2
12.18.2 (global)
$ node -v
v12.18.2
$ npm -v
6.9.0
이것으로 Node.js 설치가 완료되었습니다!