node-sass安装失败,并且报错Module build failed (from ./node_modules/sass-loader/lib/loader.js)
Posted 红糖玛奇朵
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node-sass安装失败,并且报错Module build failed (from ./node_modules/sass-loader/lib/loader.js)相关的知识,希望对你有一定的参考价值。
1.前言
接手一个新的项目,需要下载scss,node-sass,但是一直下载不下来,并且一直爆红(erro),使用的是npm下载,镜像切换为淘宝镜像还是会出错。
2.解决方法及过程
升级自己的node版本,我最开始使用的node版本是14,一直安装node-sass没有成功,后面我将Node升级到16之后,安装成功了。
随后在安装之后,启动项目过程中开始报新的错误
Module build failed (from ./node_modules/sass-loader/lib/loader.js): friendly-errors 15:35:58
Error: Missing binding D\\node_modules\\node-sass\\vendor\\win32-x64-93\\binding.node
Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 16.x
Found bindings for the following environments:
- OS X 64-bit with Node.js 18.x
- OS X 64-bit with Node.js 19.x
- OS X 64-bit with Node.js 16.x
- Windows 64-bit with Node.js 14.x
错误信息表明Node Sass模块无法找到您正在运行的当前环境(Windows 64位,Node.js 16.x)的绑定。它说此环境的绑定没有找到,并列出了已找到绑定的其他环境。,而解决方法就是
npm rebuild node-sass
最后运行成功了
以上是关于node-sass安装失败,并且报错Module build failed (from ./node_modules/sass-loader/lib/loader.js)的主要内容,如果未能解决你的问题,请参考以下文章
VUE报错:Module build failed: Error: Cannot find module ‘node-sass‘
VUE报错:Module build failed: Error: Cannot find module ‘node-sass‘
Module build failed: Error: Cannot find module ‘node-sass‘ Require stack报错解决