参考文章

如何使用yarn&如何用yarn配置node-sass

前言

遇到问题:yarn安装项目依赖,遇到node-sass模块被卡住,整个时间用了600s+,实在令人头大。

yarn解决

  1. 设置yarn源为淘宝源
yarn config set registry https://registry.npm.taobao.org -g
  1. 配置下 node-sass 的二进制包镜像地址
yarn config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass -g
  1. 愉快的安装sass-node
yarn add node-sass

居然只用了9s+
安装整个项目依赖:居然只要11s+,提速几十倍

npm解决

把yarn改成npm, 其他配置一模一样

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

最后对比发现,都设置为淘宝源之后,yarn还是比npm快了一点。大概10-20s

GitHub 加速计划 / no / node-sass
10
0
下载
:rainbow: Node.js bindings to libsass
最近提交(Master分支:1 个月前 )
6081731a Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3 to 4. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> 1 年前
62c0f46c Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> 1 年前
Logo

新一代开源开发者平台 GitCode,通过集成代码托管服务、代码仓库以及可信赖的开源组件库,让开发者可以在云端进行代码托管和开发。旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐