暗中观察

CentOS 安装 nodejs
前提已经安装了Git1.安装nvm curl -o- https://raw.githubuserconten...
扫描右侧二维码阅读全文
12
2018/08

CentOS 安装 nodejs

前提已经安装了Git

1.安装nvm

   curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
   #or Wget:
   wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash

ps:安装完成后重新打开控制台,查看 nvm --version
nvm-install.jpg

2.安装node

查看node版本: nvm ls-remote
nvm-install-node.jpg
安装LTS版本 : nvm install v8.11.3
nvm-install-node02.jpg
安装pm2
npm install -g pm2

3.常见问题

a.不能进行clone(连接github超时)
解决方法就是手动创建install文件,然后修改仓库地址!
nvm-install-problem.jpg

ps:提供附件下载:install.sh

b.windows版本安装
https://github.com/coreybutler/nvm-windows

使用淘宝node镜像:
nvm node_mirror https://npm.taobao.org/mirrors/node/
使用淘宝npm镜像:
nvm npm_mirror https://npm.taobao.org/mirrors/npm/

查看所有可用:
nvm list available

安装指定版本:
nvm install xxxxx
npm install gulp-cli -g

切换版本:
nvm use xxxxx

使用yarn:
npm i -g yarn

安装cnpm:
npm install -g cnpm --registry=https://registry.npm.taobao.org

Last modification:May 11th, 2019 at 11:54 pm
If you think my article is useful to you, please feel free to appreciate

Leave a Comment