[Node.js] How to Install the Version Management Tool nvm on Mac
A memo on how to install “nvm”, a Node.js version management tool, on Mac. (Last updated: 2014/11/19)
git clone https://github.com/creationix/nvm.git ~/.nvm && cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`
source ~/.nvm/nvm.sh
・[Mac] OpenSSL を Homebrew でインストールする方法
If you don’t install pkg-config, “Checking for openssl : no” will be displayed when installing Node.js.
brew install pkg-config
nvm install v0.11.3
That’s all from the Gemba.