For some reason everytime I do an NPM install it gets stuck on installing the node-sass. The project doesn't even use node-sass. This is the error.
[email protected] install C:\development\node_modules\gulp-sass\node_modules\node-sass
> node scripts/install.js
Downloading binary from https://npm.taobao.org/mirrors/node-sass/v3.13.1/win32-x64-57_binding.node
Cannot download "https://npm.taobao.org/mirrors/node-sass/v3.13.1/win32-x64-57_binding.node":
HTTP error 404 Not Found
Hint: If github.com is not accessible in your location
try setting a proxy via HTTP_PROXY, e.g.
export HTTP_PROXY=http://example.com:1234
or configure npm proxy via
npm config set proxy http://example.com:8080
> [email protected] install C:\development\node_modules\uws
> node-gyp rebuild > build_log.txt 2>&1 || exit 0
> [email protected] postinstall C:\development\node_modules\gulp-sass\node_modules\node-sass
> node scripts/build.js
I fixed the issue. After trying everything I got it to work. I ended up re cloneing the project from the repo and downgrading the Node and NPM version to an older one
node - v6.10.2
npm - 3.10.10
I then ran NPM install and composer install.
In my case, that worked because the application that I'm working on is based on Laravel 5.2 and I guess the Node version I had was to updated I guess.