Node.jsのバージョンを最新にしたらGulpがエラーになった

今回はnode.jsのバージョンを最新(v14.17.2)にインストールしたらgulpが使えなくなっていたので修正した経緯を紹介します。

エラーになった経緯

1.react.jsの勉強をするためにnode.jsを最新版に再インストールしました。
2.reactの時は何事もなく順調にすすんでいたのですが、他のプロジェクトのサイトをGulpで起動していたことにきがつきませんでした。
3.いざ他のプロジェクトのGulpを動かそうと「gulp sass」とコマンド入力したらエラーになりました。

エラー内容

Error: Missing binding D:\xampp\htdocs\プロジェクト名\node_modules\node-sass\vendor\win32-x64-83\binding.node
Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 14.x

Found bindings for the following environments:
  - Windows 64-bit with Node.js 8.x

This usually happens because your environment has changed since running `npm install`.
Run `npm rebuild node-sass` to download the binding for your current environment.
    at module.exports (D:\xampp\htdocs\プロジェクト名\node_modules\node-sass\lib\binding.js:15:13)
    at Object.<anonymous> (D:\xampp\htdocs\プロジェクト名\node_modules\node-sass\lib\index.js:14:35)
    at Module._compile (internal/modules/cjs/loader.js:1085:14)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1114:10)
    at Module.load (internal/modules/cjs/loader.js:950:32)
    at Function.Module._load (internal/modules/cjs/loader.js:790:14)
    at Module.require (internal/modules/cjs/loader.js:974:19)
    at require (internal/modules/cjs/helpers.js:92:18)
    at Object.<anonymous> (D:\xampp\htdocs\プロジェクト名\node_modules\gulp-sass\index.js:166:21)
    at Module._compile (internal/modules/cjs/loader.js:1085:14)

解決方法

このようなエラーメッセージがでたときは下記のようなコードで直りました。

npm rebuild node-sass

参考

Shareこの記事をシェアしよう!