怎么下载安装yarn

安装

npm install --global yarn   

是否安装成功

yarn -v         

Yarn 淘宝源安装,分别复制粘贴以下代码行到黑窗口运行即可

yarn config set registry https://registry.npm.taobao.org -g 
yarn config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass -g

安装指定版本包(格式为'包名称@版本号')

yarn add 包名称@版本号

例:

npm 版:npm install --save element-ui@2.15.8

yarn 版:yarn add element-ui@2.15.8

删除依赖

npm 版:npm uninstall 包名称

yarn 版:yarn remove 包名称

例:删除 element-ui 依赖

npm 版:npm uninstall element-ui

yarn 版:yarn remove element-ui

删除之后在 package.json 中就没有:"element-ui": "^2.15.8" 了

本地安装(将依赖下载到当前命令行所在目录项目中)

npm 版:npm install 包名称

yarn 版:yarn add 包名称

全局安装(依赖将被下载安装到【全局目录】中,再创建新项目安装依赖时会自动安装该依赖)

npm 版:npm install 包名称 --global // 简写:npm install 包名称 -g

yarn 版:yarn global add 包名称
相关推荐
蟾宫曲18 小时前
Node.js 工具:在 Windows 11 中配置 Node.js 的详细步骤
windows·npm·node.js·前端工具
滚雪球~1 天前
npm error code ETIMEDOUT
前端·npm·node.js
沙漏无语1 天前
npm : 无法加载文件 D:\Nodejs\node_global\npm.ps1,因为在此系统上禁止运行脚本
前端·npm·node.js
风度前端1 天前
理解npm中的包和模块
前端·npm
敲啊敲95272 天前
5.npm包
前端·npm·node.js
蜜獾云2 天前
npm淘宝镜像
前端·npm·node.js
dz88i82 天前
修改npm镜像源
前端·npm·node.js
小王码农记3 天前
解决npm publish发布包后拉取时一直提示 Couldn‘t find any versions for “包名“ that matches “版本号“
前端·npm·node.js
樊南4 天前
npm安装electron依赖时卡顿,下载不下来
前端·electron·npm
没头发的卓卓5 天前
pnpm--他简直是超人!
前端·npm·前端工程化