查询当前镜像
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命令对比
npm | yarn |
---|---|
npm instal | yarn |
npm install react --save | yarn add react |
npm uninstall react --save | yarn remove react |
npm install react --save-dev | yarn add react --dev |
npm update --save | yarn 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 许可协议。转载请注明出处!