Macでインストールする場合は、brewでnodebrewというnode.jsのパッケージマネージャーを入れてNode.jsをインストールする方向が良さげ。
導入
nodebrewのインストール
$ brew install nodebrew
インストール可能なバージョン一覧
$ nodebrew ls-remote
Node.jsインストール
$ nodebrew install-binary v{{バージョン番号}} または安定版を使用する場合は $ nodebrew install-binary stable
インストールされたバージョン一覧
$ nodebrew ls
使用するNode.jsのバージョンを指定
$ nodebrew use v{{バージョン番号}}
環境パスを通す
$ echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bash_profile