http://www.runoob.com/nodejs/nodejs-install-setup.html
nodejs官方下载,之后配置环境path,npm随着nodejs安装,自动安装
查看nodejs版本
node -v
查看npm版本
npm -v
npm 淘宝镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org (推荐使用)
npm升级
npm install npm -g
npm 安装模块
npm install express
npm 更新模块
npm update express