불과 몇 개월 사이에 Node 설치 방법이 참 편리해 졌다.


Nodejs 설치 하기 - http://blog.whitelife.co.kr/85


직접 의존성 라이브러리, Nodejs 를 수동으로 설치 했다. 자세한 글은 위 주소를 참고하자. 금주에 설치 할 일이 있어 조언도 받고, 검색도 해보았다.


Node Version Manager - https://github.com/creationix/nvm


  • Install script (Linux 기준)
curl https://raw.githubusercontent.com/creationix/nvm/v0.19.0/install.sh | bash
git clone https://github.com/creationix/nvm.git ~/.nvm && cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`
source ~/.nvm/nvm.sh

  • Usage
nvm install 0.10
nvm use 0.10


정말 간단하다. 위 명령어를 따라 실행 하기만 하면 된다.


+ Recent posts