npm install发现报错,于是打开日志

参考:

Failed at the node-sass@4.14.1 postinstall script.(第二次入坑)_我是你失散多年的总攻的博客-CSDN博客

1、先执行 npm uninstall node-sass 卸载之前可能遗留的node-sass。

2、再执行 npm i node-sass --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/

3、再执行npm install 安装成功

一、其它参考:

参考博客:前端开发环境搭建踩坑笔记——npm install node-sass安装失败的解决方案 - 知乎

 另一台电脑的node版本时 v12.18.3

npm install node-sass@^4.12.0 --registry=https://registry.npm.taobao.org --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/

二、配置镜像源

npm install时失败,报错

reason: connect ETIMEDOUT 104.16.20.35:443
...
'proxy' config is set properly. See: 'npm help config'

参考博客:https://blog.csdn.net/zz00008888/article/details/127852233

配置镜像源

npm config set registry http://registry.npm.taobao.org/

三、下载地址

参考博客 nvm管理多个node版本,快速来回切换node版本_node版本切换-CSDN博客

nvm   nvm文档手册 - nvm是一个nodejs版本管理工具 - nvm中文网

node  https://nodejs.org/en/download/prebuilt-installer 

1、在settings中添加

node_mirror: https://npmmirror.com/mirrors/node/
npm_mirror: https://npmmirror.com/mirrors/npm/

 2、安装选择node版本

nvm use 14.16.0  # 用管理员身份运行
nvm list
npm config get registry
npm config set registry https://registry.npmmirror.com

3、设置 node_global、node_cache

不设置就会默认安装到c盘,例如: C:\Users\lanren312\AppData\Roaming\...

可以用 npm config get prefix,npm config get cache 查看

npm config set prefix "D:\Program Files\nvm\node_global"
npm config set cache "D:\Program Files\nvm\node_cache"

 接下来设置环境变量

测试

npm install -g express

安装nvm前必须把之前的node都删掉

包括c盘的 C:\Users\lanren312\AppData\Roaming\npm、npm-cache 文件夹

C:\Users\lanren312 文件夹中node相关的,.node_repl_history,.npmrc

GitHub 加速计划 / no / node-sass
8.5 K
1.33 K
下载
:rainbow: Node.js bindings to libsass
最近提交(Master分支:2 个月前 )
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> 9 个月前
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> 9 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐