gulp - internalBinding is not defined
I had the same error after upgrading node to v10.16.0
I ran the following which solved my issue:
rm -rf node_modules
rm package-lock.json
npm cache clean --force
npm install
After closer inspection, it would seem that the generated tree in package-lock was outdated.
I ran into the same issue as you. To fix it, I added the following to my package.json in the devDependencies section
"natives": "^1.1.6"
I also faced the same problem and then I fixed by the following command:
npm install [email protected]
May be helpful if someone having same issue. updating node to latest version requires above package.
I recently ran into the same problem after installing node. Similar to @Dv-Learner answer, What fixed it for me was:
npm install [email protected]
npm rebuild node-sass
the bit about rebuild node-sass was required for my machine (Windows)