红联Linux门户
Linux帮助

Ubuntu部署Node.js应用

发布时间:2015-09-01 15:24:30来源:linux网站作者:WebClerk

安装Node.js环境

sudo apt-get install nodejs
sudo apt-get install npm


对于不同环境依赖 的node_module可以采用以下命令来重新生成

rm -rf node_modules
npm cache clean
npm install


如果不想使用系统自带的Node.js,可以采用NVM

curl https://raw.githubusercontent.com/creationix/nvm/v0.16.1/install.sh | sh
source ~/.profile


采用以下命令来列举/安装Node版本

nvm ls-remote
nvm install 0.11.13
nvm use 0.11.13
node -v


如果有多个Node.js版本,则可进行选择

nvm ls
nvm alias default 0.11.13
nvm use default


运行Node.js程序

node ./bin/www


Ubuntu 15.04下安装Node.JS的不同方式:http://www.linuxdiyf.com/linux/12839.html

如何在CentOS 7安装Node.js:http://www.linuxdiyf.com/linux/8610.html

Ubuntu下Node.js开发起步之旅:http://www.linuxdiyf.com/linux/7242.html

Ubuntu 14.04下搭建Node.js开发环境:http://www.linuxdiyf.com/linux/6987.html

fedora22搭建node.js服务器环境:http://www.linuxdiyf.com/linux/13426.html