Nodejs

2021-12-20 小于 1 分钟

# Nodejs

# yarn 使用

# 全局安装yarn
npm install --global yarn

# 换源
yarn config set registry 'https://registry.npm.taobao.org'

# 添加依赖到package.json的dependencies中
yarn add xxx 

# 添加依赖到package.json的devDependencies中
yarn add xxx --dev

yarn upgrade xxx   

# 全局安装
yarn global add xxx

yarn remove xxx   

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
上次编辑于: 2022年2月12日 13:04