node.js 와 npm 설치
이전에 설치한 node.js 버전이 존재한다면 먼저 제거하기
brew uninstall --ignore-dependencies node
brew uninstall --force node
brew를 이용해 nvm 설치하기
brew install nvm
home으로 가서 nvm을 위한 디렉토리 생성
mkdir ~/.nvm
.zshrc 에 가서 아래 코드 붙여 넣고 저장하기
code ~/.zshrc
export NVM_DIR="$HOME/.nvm"
[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && \. "/opt/homebrew/opt/nvm/nvm.sh" # This loads nvm
[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" # This loads nvm bash_completion
source ~/.zshrc
nvm 버전 확인
nvm 을 이용해 node 설치
// install different versions of Node.js
nvm install [설치버전]
// install the current LTS Node.js version
nvm install --lts
nvm install 16.15.1
node 버전 확인
node --version
node.js lts 버전 설치
nvm install --lts
node 버전 다시 확인
node -v
설치된 node.js 리스트 확인
nvm list
// or
nvm ls
node 이전 버전 삭제
nvm uninstall 16.15.1
16.16.0 버전의 node.js 사용하기, 설치된 node.js 리스트 확인
nvm use 16.16.0
default node.js 버전 사용하기 (여기선 16.16.0 버전), node.js 리스트 확인
nvm alias default 16.16.0
npm 버전 확인
npm --version
npm 업데이트
- latest release: the most recent stable version.
npm install npm@latest -g
npm 특정버전 설치하기
npm install <package>@<version>
npm install -g npm@8.13.2
참고 :
https://amanhimself.dev/blog/install-nodejs-using-nvm-on-macos-m1/
https://docs.npmjs.com/about-npm-versions
https://www.freecodecamp.org/korean/news/how-to-update-node-and-npm-to-the-latest-version/
https://nodejs.dev/en/learn/install-an-older-version-of-an-npm-package
https://nodejs.org/ko/download/
'setting' 카테고리의 다른 글
[MacOS - M1] node 와 npm 삭제하기 (1) | 2022.08.26 |
---|---|
[MacOS - M1] iTerm에서 .zshrc 여러 개 사용하기(use multiple .zshrcs) (0) | 2022.08.05 |
[MacOS - M1] zsh 터미널 컴퓨터이름, 사용자 이름 삭제 (1) | 2022.07.19 |
[MacOS - M1] m1 Mac에 mysql 설치하기 (0) | 2022.07.18 |
MacBook 단축키 정리 (0) | 2022.07.15 |
댓글