我有问题构建一个应用程序,因为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,这两者都没有解决问题。什么好主意吗?


当前回答

对于使用Visual Studio的用户:

目前正在为VS 2015, 2017, 2019, 2022工作(通过下面和/或这篇文章的回复)

任务运行器资源管理器无法加载任务

VS 2015

转到:工具>选项>项目和解决方案>外部Web工具

VS 2017(.3), VS 2019和VS 2022

>选项>项目和解决方案> Web包管理>外部Web工具(每个@nothrow)

在VS 2017, 2019, 2022,你还需要把$(PATH)放在$(VSINSTALLERDIR)\Web\External上面


重新排序,使$(PATH)在$(DevEnvDir)\Extensions\Microsoft\Web Tools\External之上


删除node_modules并运行npm install和npm rebuild node-sass没有任何作用。

其他回答

在某些情况下,您需要卸载并安装node-sass库。试一试:

npm uninstall --save node-sass

and

npm install --save node-sass

看看这个,它为我工作, 堆栈链接在这里

我已经尝试了所有我能找到的方法。

我注意到那个文件夹有一些奇怪的行为。当我试图从VS终端“cd”到“node_sass”文件夹时,它告诉“文件夹未找到”,但在Finder中看到。

chmod从VS终端找不到文件夹,即使有'sudo'命令。

我已经从本地MacOs终端chmod-ed,刚刚与节点重建。

我只是运行npm rebuild而不是npm rebuild node-sass,问题就消失了。但我不知道背后的魔力是什么。

Open Visual Studio 2017 进入工具->选项… 进入项目和解决方案-> Web包管理 移动$(PATH)到列表的顶部并关闭该窗口。 重新启动Visual Studio。 这在我的例子中是可行的,因为我的节点版本是11.x

我也有同样的问题

    throw new Error(errors.missingBinary());
    ^

Error: Missing binding /path/to/project/node_modules/node-sass/vendor/linux-x64-47/binding.node
Node Sass could not find a binding for your current environment: Linux 64-bit with Node.js 5.x

Found bindings for the following environments:
  - Linux 64-bit with Node 0.10.x
  - Linux 64-bit with Node.js 5.x

这是因为我用不同的nodejs版本安装了npm, 尝试删除node_modules文件夹安装和启动

cd your_project
rm -rf node_modules
npm install
npm start or gulp or whatever

如果你正在使用nvm do

nvm use stable // or your favorite version
// remove node_module directory
npm install
npm start or gulp or whatever