On Windows, you need to install nvm-windows
Tag: NodeJs
rror: ENOENT: no such file or directory, scandir ‘**/node_modules/node-sass/vendor’ npm install
Try to delete node_modules folder, close all editors that are opening the project(Visual Studio, Visual Studio Code, Atom, etc).
Then run npm install again
This issue is because those lock the package.json files.
Node is not found in Ubuntu
When running nodejs application on ubuntu
this is because the package manager named the application nodejs instead of node
make a symlink from nodejs to node and it should work
sudo ln -s /usr/bin/nodejs /usr/bin/node