(nvm全称Node Version Manager)

    

安装方式:

    curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.32.0/install.sh | bash

    或 wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.32.0/install.sh | bash

    

    以上脚本会把nvm库clone到~/.nvm,然后会在~/.bash_profile, ~/.zshrc或~/.profile末尾添加source,安装完成之后,

    

    Centos系统:  执行source ~/.bashrc


    之后,你可以用以下命令来安装node

    nvm i v6.7.0


pm2安装:

    

    执行命令:npm i pm2 -g    


    注:

    pm2(Production process manager for Node.js apps with a built-in load balancer.)

        https://github.com/Unitech/pm2



    

nvm其它使用:

    使用指定的版本

    $ nvm use v6.7.0

    查看当前已经安装的版本

    $ nvm ls

    查看正在使用的版本

    $ nvm current

    以指定版本执行脚本

    $ nvm run v6.7.0 myApp.js

    卸载nvm

    $ rm -rf ~/.nvm