1.用Node官網提供的命令安裝node https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributionsnode
步驟a. curl --silent --location https://rpm.nodesource.com/setup_8.x | sudo bash -
linux
對於node.js 6,相應命令以下 curl --silent --location https://rpm.nodesource.com/setup_6.x | sudo bash -npm
有些VPS須要去掉sudoubuntu
步驟b. sudo yum -y install nodejs
bash
2.切換npm鏡像源curl
步驟a. npm config set registry https://registry.npm.taobao.org --globalurl
步驟b. npm config set disturl https://npm.taobao.org/dist --globalspa
3.這步可省略,只是舉個例子命令行
touch hello.js 建立一個新js文件,vi hello.js 輸入i進入編輯模式,編輯爲console.log('hello world'),ESC進入命令行模式,輸入:wq保存退出vi, node hello.js,輸出hello world。code
4.npm install forever -g forever start server.js