Cannot download "https://github.com/sass/node-sass/releases/download/v3.4.2/win32-x64-48_binding.node": HTTP error 404 Not Found
というエラー。
node.jsのバージョンはv6.9.1でしたがv5を使えばいいみたい
nodist(windows用のnode.jsのバージョン管理)がインストールされていたのでここからインストール
//インストールできるバージョンを確認 nodist dist //バージョンを指定してインストール 今回は5.12.0 nodist 5.12.0 //インストールの確認 node -v
再度node-sass のrebuildを実行
npm rebuild node-sass
無事rebuildされました
404 not found on npm install sass (darwin-x64-47_binding.node) #1299
https://github.com/sass/node-sass/issues/1299
ちなみに以下のようなエラーが出た場合も、ライブラリが対応していないバージョンなのが原因のようです。
(node:26144) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.
node v5を指定したところ、表示されなくなりました。