Node使用笔记
# 安装
# 直接安装
yum install nodejs
npm install -g n
n stable #升级到最新稳定版本
n latest #升级到最新版本
1
2
3
4
5
6
7
2
3
4
5
6
7
# 通过nvm安装
- 安装
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
# or
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
1
2
3
4
5
2
3
4
5
# npm
# 设置淘宝镜像
# 永久使用
npm config set registry https://registry.npmmirror.com
# 配置cnpm
npm install -g cnpm --registry=https://registry.npmmirror.com
# 恢复npm
npm config set registry https://registry.npmmirror.com
# 更新
npm install npm@latest -g
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
也可在项目目录下创建.npmrc
文件,写入以下内容:
registry=https://registry.npmmirror.com
1
编辑 (opens new window)
上次更新: 2024/07/01, 15:41:03