목록programming (8)
Hello World...

nvm은 Node Version Manager 의 줄임말로 말 그대로 node 버전 관리를 쉽게 해주는 툴이다. https://github.com/nvm-sh/nvm 설치 $ sudo curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/install.sh | bash 설치 후 $ vim ~/.bash_profile 아래 내용 입력 export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")" [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" 입력 후 $ source ~..
programming
2019. 12. 26. 08:47