node unsafe-perm code example
Example 1: npm install --unsafe-perm
sudo npm install --unsafe-perm=true -g now
or
sudo npm config set unsafe-perm true
#Please note that –unsafe-perm removed in v6.11.0
Example 2: Setting config options for the init command
> npm set init.author.email "[email protected]"
> npm set init.author.name "example_user"
> npm set init.license "MIT"