728x90
In here, we use Homebrew to upgrade & downgrade you node version
1. Check your node version and search your node lists
brew search node
node -v
2. Unlink your current node version
brew unlink node
+ If(I don't have that version I want to use!) {
brew install node@14
}
You can use that command to install the version
3. Install new node version that you want
brew link --overwrite --force node@19
+ you can link your node versions like node@19 / node@12 / node@18 / etc..
End
728x90
'Development Study > Background Knowledges' 카테고리의 다른 글
[Architecture] View Course of System (0) | 2023.01.06 |
---|---|
[API] Essential programming system, API (0) | 2023.01.06 |
[Git] Git은 뭐하는 친구일까 (1) | 2023.01.03 |
[Git] 명령어 정리 (0) | 2022.12.31 |
[IntelliJ] build.gradle 뜯어보기 (0) | 2022.11.26 |