2015-08-24
Install nodejs or iojs on mac
update 2018-05-16: 已經是 async/await 時代了,建議都安裝 node 就好 iojs 已經是過去式。
install
nodejs
brew install node
iojs
brew install iojs
switch
switch to nodejs
brew unlink iojs && brew link node
switch to iojs
brew unlink node && brew link --force iojs