I am trying to run angular application and execute ng serve command then show
Error: Cannot find module \'node-sass\'.
If you have not added node pakage.json yet try running node init if you already have this npm install node-sass. if both are present and you are using ubuntu try changing permission of the folder using chmod -R path to node module
On Reply :-
Error: EACCES: permission denied, mkdir '/usr/local/lib/node_modules/node-sass/build'
Ask Question
Solution :-
You need to change ownership of node_modules
, because you use sudo npm install -g node-sass
so its ownership set to root,
To change ownership to current user as group -
sudo chown -R root:YOUR_USERNAME /usr/local/lib/node_modules/
sudo chmod -R 775 /usr/local/lib/node_modules/
And never use sudo
for npm
related query.
I am working ionic and have this issue so I solved this by move one folder back and run command.
sudo chmod -R 777 project-directory
after this npm install node-sass --save
Try this
sudo npm install -g --unsafe-perm node-sass
Or this
sudo npm install -g --unsafe-perm --verbose @angular/cli
Try this : npm install node-sass@version .
if you want the latest, then just try npm install node-sass .
If you're getting access problem then:
Windows: command prompt in admin mode, then run the above.
Mac: sudo npm install node-sass.
ERROR in Cannot find module 'node-sass'
https://github.com/sass/node-sass/issues/603
Run this command
sudo npm install -g <ModuleName> --unsafe-perm=true --allow-root