I get following error message when running gulp
:
Error: Missing binding Z:\Themewagon\Premium\sparrow\zcore\node_modules\node-sass\vendor\win32-x64-48\binding.node Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 6.x
Found bindings for the following Environments: Linux 64-bit with Node.js 7.x
To resolve this error I tried:
- npm install node-sass,
- npm rebuild node-sass,
- npm uninstall -save node-sass,
- npm install -save node-sass,
- npm cache clean. etc
Nothing is working for me. How do I resolve this issue.
\node_modules\node-sass\vendor
directory and see if there is eitherwin32-x64-48
[in case of windows],darwin-x64-48
[in case of osx] orlinux-x64-48
[in case of linux]. If not, create them. Then -> continue in the next comment: – Bartekusbinding.node
inside that same folder. Once this is done everything should work. Also in case of Node 7 use*-x64-51
while for Node 5 use*-x64-47
for folders along with appropriate*-x64-*_binding.node
renamed tobinding.node
that you put inside the said folder. Cheers and good luck. Also if anybody else encounter this and knows what cause it, I'd be very happy to find out myself. – Bartekus