Node.js – Error: Module version mismatch. Expected 48, got 46.
Hello all,
This error is generated by the fact that you just upgraded a your major Node.js version, which is good, and your node_modules need to be re-installed.
I suggest you to run in your terminal rm -rf node_modules && npm install
to re-install all the dependencies.
Have a good day!
npm update will work .