node sass和node版本兼容性的问题

今天做项目时,发现报如下错误

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! node-sass@9.0.0 postinstall: `node scripts/build.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the node-sass@9.0.0 postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     D:\Program Files (x86)\nodejs\node_modules\_logs\2023-06-16T07_13_23_429Z-debug.log

这个一看就是node版本兼容性导致的问题
node-sass与node版本不匹配
下面是常见的node版本和对应的node-sass版本
node sass和node版本兼容性的问题_第1张图片
node sass和node版本兼容性的问题_第2张图片
所以我的系统上windows64 所以我把node的版本降为 node14 然后使用了node sass 5.0就成功解决了这个问题
**

步骤如下:

**
一、先卸载node.js
node sass和node版本兼容性的问题_第3张图片

二、打开node网站 https://nodejs.org/zh-cn/download/releases

node sass和node版本兼容性的问题_第4张图片
选择Node.js 14.21.3版本的查看与下载

三、下载 node-v14.21.3-x64.msi

node sass和node版本兼容性的问题_第5张图片
四、接下来直接安装

五、安装好了以后npm install [email protected]

你可能感兴趣的:(node.js,scss)