我有问题构建一个应用程序,因为node-sass不断失败的错误。
binding /Users/warren/Sites/random-docs/my-cms/node_modules/node-sass/vendor/darwin-x64-11/binding.node出错
Node Sass无法找到当前环境的绑定:OS X 64位的Node 0.10.x
我试过跑步
npm rebuild node-sass
说
二进制很好;退出。
当运行node -v时,我得到v6.2.2
这与sass错误说的“Node 0.10.x”不同。我不明白为什么它会得到错误的版本。我也尝试删除node_modules文件夹并运行npm update或npm install,这两者都没有解决问题。什么好主意吗?
node-sass节点模块使用依赖于节点版本的达尔文二进制文件。没有下载二进制文件或下载了错误的二进制文件时,会出现此问题。
[![节点sass错误][1]][1].
重新安装节点模块将下载node-sass的二进制文件:-
Mac用户:
rm -rf node_modules
npm cache clean --force
npm i
npm rebuild node-sass --force
Windows用户:
rmdir node_modules
npm cache clean --force
npm i
npm rebuild node-sass --force
但是对于某些用户,您需要检查您的节点版本与node-sass版本的兼容性。使用下面的表使其兼容,并再次运行以上命令来修复此问题。
这是node-sass的节点兼容性表
NodeJS | Supported node-sass version | Node Module
Node 17 7.0+ 102
Node 16 6.0+ 93
Node 15 5.0+ 88
Node 14 4.14+ 83
Node 13 4.13+, <5.0 79
Node 12 4.12+ 72
Node 11 4.10+, <5.0 67
Node 10 4.9+, <6.0 64
Node 8 4.5.3+, <5.0 57
Node <8 <5.0 <57
如果问题仍未解决,请检查node-sass支持的环境列表:—https://github.com/sass/node-sass/releases/
在创建AspNetCore应用程序时,我在Visual Studio 2015 Community Edition中遇到了类似的错误:
Node Sass could not find a binding for your current environment: Windows 32-bit with Node.js 5.x
Found bindings for the following environments:
- Windows 64-bit with Node.js 6.x
This usually happens because your environment has changed since running `npm install`.
Run `npm rebuild node-sass` to build the binding for your current environment.
at module.exports ([..]\node_modules\node-sass\lib\binding.js:15:13)
at Object.<anonymous> ([..]\node_modules\node-sass\lib\index.js:14:35)
at Module._compile (module.js:397:26)
at Object.Module._extensions..js (module.js:404:10)
at Module.load (module.js:343:32)
at Function.Module._load (module.js:300:12)
at Module.require (module.js:353:17)
at require (internal/module.js:12:17)
at Object.<anonymous> ([..]\node_modules\gulp-sass\index.js:187:21)
at Module._compile (module.js:397:26)
您可以从上面的错误中看到,原因是nodejs绑定的版本不匹配。
Node Sass无法找到当前环境的绑定:
Windows 32位,带有Node.js 5.x
为以下环境找到绑定:
—Windows 64位,Node.js 6.x
我找到的解决办法是
安装windows版本的nodejs,
在外部网络工具中添加节点js (C:\Program Files\nodejs)的路径(参见Rob Scott的回答)
将nodejs路径移到$(path)上方。
当我试图在MacOS上的docker中使用node-sass时,我得到了这个错误,这里的解决方案都不起作用。
发生错误是因为我在试图构建docker镜像之前进行了npm安装。npm安装正确地将node-sass的MacOS版本拉到我的node_modules中,然后我将node_modules复制到运行Linux的docker镜像中。这个失败是因为它不能在Linux上运行node-sass的MacOS版本。
在我的情况下,解决方案是在npm安装步骤后添加这个到我的makefile:
docker-compose run --rm --entrypoint "bash -c" mydockerimage "npm rebuild node-sass"
NPM重建node-sass——force
或者,如果你在容器中使用node-sass:
Docker exec <container-id> NPM rebuild node-sass——force
当node-sass没有当前操作系统的正确绑定时,会发生此错误。
如果你使用Docker,当你将node_modules直接添加到Dockerfile中的容器文件系统(或使用Docker卷挂载它们)时,通常会发生这种错误。
容器体系结构可能与当前的操作系统不同。例如,我在macOS上安装node-sass,但我的容器运行Ubuntu。
如果强制node-sass从容器内部重新构建,node-sass将下载容器操作系统的正确绑定。
查看我的复制案例了解更多。