# yarn记录 #
yarn记录
使用yarn代替npm
1.我们在安装完node
之后就有了npm
,但是我们嫌弃比较慢,于是就使用了淘宝NPM镜像cnpm
安装cnpm
命令:
npm install -g cnpm --registry=https://registry.npm.taobao.org
2.我们嫌弃cnpm路径问题以及丢包问题,更改npm仓库。具体命令:
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
3.Nodejs中国镜像,为中国内地的Node.js开发者准备的镜像配置,大大提高node模块安装速度。
# 从registry地址安装mirror-config-china
npm i -g mirror-config-china --registry=https://registry.npm.taobao.org
# 检查是否安装成功 如果安装成功之后会出现 userconfig C:\Users\{YOUNAME}\.npmrc 这个里面写了很多镜像地址
npm config list
4.然后我们可以为项目生成镜像配置
cd ~/my-project
mirror-config-china --registry=https://registry.npm.taobao.org
5.重点来了,我们使用yarn
# 全局安装yarn
npm install -g yarn
# 同样,我们也为yarn设置镜像源
yarn config set registry https://registry.npm.taobao.org --global
yarn config set disturl https://npm.taobao.org/dist --global
# 安装完 yarn 之后就可以用 yarn 代替 npm 了,例如用 yarn 代替 npm install 命令,用 yarn add 某第三方库名代替 npm install 某第三方库名。
# 为了更好用,顺便我们再多配置点东西
phantomjs_cdnurl=https://bitbucket.org/ariya/phantomjs/downloads
sass_binary_site "https://npm.taobao.org/mirrors/node-sass/"
phantomjs_cdnurl "http://cnpmjs.org/downloads"
electron_mirror "https://npm.taobao.org/mirrors/electron/"
sqlite3_binary_host_mirror "https://foxgis.oss-cn-shanghai.aliyuncs.com/"
profiler_binary_host_mirror "https://npm.taobao.org/mirrors/node-inspector/"
chromedriver_cdnurl "https://cdn.npm.taobao.org/dist/chromedriver"
yarn命令与npm命令比较
说明 | npm命令 | Yarn命令 | yarn命令简写 |
---|---|---|---|
安装某个依赖 | npm install XX --save | yarn add XX | |
安装某个开发依赖 | npm install XX --dev | yarn add --dev XXX | yarn add -DE XXX |
初始化某个项目 | npm init | yarn init | |
移除某个依赖项目 | npm uninstall taco —save | yarn remove taco | |
更新某个依赖项目 | npm update taco —save | yarn upgrade taco | |
安装某个全局依赖项目 | npm install taco --global | yarn global add taco | yarn add taco -g |
发布/登录/登出,一系列NPM Registry操作 | npm publish/login/logout | yarn publish/login/logout | |
运行某个命令 | npm run/test | yarn run/test | |
查看本机全局安装的依赖 | npm list -g --depth 0 | yarn global list | |
.. |
添加一个依赖包
yarn add [package]
yarn add [package]@[version]
yarn add [package]@[tag]
例如
npm install react-router-dom @types/react-router-dom --save
yarn add react-router-dom @types/react-router-dom
yarn安装的全局依赖没有找到
例如
yarn global add umi
umi -v
'umi' 不是内部或外部命令,也不是可运行的程序 或批处理文件
yarn global bin
将获得的地址添加到系统环境变量中。
默认地址 c:user\XXX\AppData\Local\Yarn\bin
https://blog.csdn.net/weixin_42214548/article/details/104122763