I get several requests for “How to change default email sender in WordPress” to the desired ones while providing tech...
How to fix ( Error: EACCES: permission denied, mkdir )
Fahid JavidNodejs and NPM have made life so easier. If you use Gulp toolkit with it I am sure you love it 😍
However, I came across Error: EACCES: permission denied, mkdir (directory permissions) issue today when I tried to install all gulp packages and their dependencies with the following commands in a project.
$ npm install
I also tried by updating Nodejs, NPM and by installing NPM with sudo to give it current user administrative permissions.
$ sudo npm update
$ sudo npm install
I got the same error every single time. After digging into this issue and reading log file I used the NPM install command with sudo and a couple of permission flags given below.
$ sudo npm install --unsafe-perm=true --allow-root
This command fixed the issue. It worked like a charm and installed all gulp packages without any directory permission errors.