NodeJsの学習1:centosの中のインストールの過程


もしあなたが長期的にnodeの開発をしたいならば、あるいは急速にnodeのバージョンを更新したいです.あるいはnodeのバージョンを切り替えたいなら、Windowsではない環境で、nvmを使ってあなたのnode開発環境をインストールしてください.
linux環境
1.git clone nvm
github clone nvmから直接現地に行きます.ここでみんなが使うと仮定します./gitディレクトリ保存gitプロジェクト:
$ cd ~/git
$ git clone https://github.com/cnpm/nvm.git
端末起動時に自動的にsource~/git/nvm/nvm.shを設定します.profile、~/.profile、または~/.zshrcファイルに以下のコマンドを追加します.
$ source ~/git/nvm/nvm.sh
あなたの端末をもう一度開けて、nvmを入力してください.
$ nvm

Node Version Manager

Usage:
    nvm help                    Show this message
    nvm --version               Print out the latest released version of nvm
    nvm install [-s] <version>  Download and install a <version>, [-s] from source
    nvm uninstall <version>     Uninstall a version
    nvm use <version>           Modify PATH to use <version>
    nvm run <version> []  Run <version> with  as arguments
    nvm current                 Display currently activated version
    nvm ls                      List installed versions
    nvm ls <version>            List versions matching a given description
    nvm ls-remote               List remote versions available for install
    nvm deactivate              Undo effects of NVM on current shell
    nvm alias []       Show all aliases beginning with 
    nvm alias <name> <version>  Set an alias named <name> pointing to <version>
    nvm unalias <name>          Deletes the alias named <name>
    nvm copy-packages <version> Install global NPM packages contained in <version> to current version

Example:
    nvm install v0.10.24        Install a specific version number
    nvm use 0.10                Use the latest available 0.10.x release
    nvm run 0.10.24 myApp.js    Run myApp.js using node v0.10.24
    nvm alias default 0.10.24   Set default node version on a shell

Note:
    to remove, delete or uninstall nvm - just remove ~/.nvm, ~/.npm and ~/.bower folders
2.nvmで任意のバージョンのnodeをインストールする
$ nvm install 0.12.0
そこであなたは非常に速いプログレスバーを見ます.
######################################################################## 100.0%
Now using node v0.12.0
直接にiojsの各バージョンをインストールすることもできます.
$ nvm install iojs
各バージョンのnodeをインストールするのにとても便利です.現在インストールされているバージョンを確認してください.
$ nvm ls-remote
         nvm
     v0.8.26
    v0.10.26
    v0.11.16
->  v0.12.0