when npm install node-sass HTTP error 404 Not Found code example
Example 1: node-sass: command not found
npm i -g node-sass
Example 2: node sass install error
You need to do next steps and it should work:
rm -rf node_modules package-lock.json
npm install --saveDev [email protected]
npm install
Voila :)