Node.js 설치 방법(Windows)

소개



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

목차


  • Nodist 설치
  • Nodist를 사용하여 Node.js 설치

  • 1.Nodist 설치


  • 아래 사이트에서 "NodistSetup-v0.x.x.exe"다운로드

  • Nodist 설치 사이트

  • 설치 프로그램 시작


  • “Next>”를 클릭!


  • 「I Agree」를 클릭!


  • Destination Folder를 “C:\Program Files\Nodist\”로 하고 “Install”을 클릭!



  • 이것으로 Nodist 설치가 완료!

    2. Nodist를 사용하여 Node.js 설치


  • 명령 프롬프트 시작


  • Nodist 버전 정보 확인
  • $ nodist -v
    0.9.1
    
  • Nodist에서 사용할 수있는 Node.js 버전 확인
  • $ nodist dist
    .
    .
    14.12.0
    14.13.0
    
  • 사용할 Node.js 얻기
  • $ nodist use 12.18.2
     12.18.2 [===============] xxxxx/xxxxx KiB 100% 0.0s
    12.18.2
    
  • 얻은 Node.js가 있는지 확인
  • $ nodist
      (x64)
    > 11.13.0 (global: 11.13.0)
      12.18.2
    
  • 사용할 Node.js 버전 지정
  • $ nodist global 12.18.2
    12.18.2
    12.18.2 (global)
    
  • Node.js와 npm이 올바르게 설치되었는지 버전 확인
  • $ node -v
    v12.18.2
    
    $ npm -v
    6.9.0
    

    이것으로 Node.js 설치가 완료되었습니다!

    좋은 웹페이지 즐겨찾기