编辑
2023-07-01
前端
00
请注意,本文编写于 643 天前,最后修改于 434 天前,其中某些信息可能已经过时。

目录

安装yarn
问题-禁止运行脚本

安装yarn

查询当前镜像

npm get registry

全局安装yarn

npm install -g yarn

看一下yarn版本,运行以下命令

yarn -v

改为淘宝镜像

yarn config set registry https://registry.npm.taobao.org 最新地址

npm config set registry https://registry.npmmirror.com

安装项目依赖

yarn install

运行项目

yarn run dev

打包

yarn run build

npm和yarn命令对比

npmyarn
npm instalyarn
npm install react --saveyarn add react
npm uninstall react --saveyarn remove react
npm install react --save-devyarn add react --dev
npm update --saveyarn upgrade

问题-禁止运行脚本

yarn安装完后执行yarn的命令遇到问题:yarn : 无法加载文件…因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。

首先在windows搜索windows PowerSell,然后以管理员身份运行 执行命令:set-ExecutionPolicy RemoteSigned,没有报错就说明ok了,之后就可以正常运行yarn的命令 选择Y同意

本文作者:Weee

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!