I\'m getting a strange permission error when I try to install an npm module. I\'m starting it with sudo so I\'m sure I do have access, but for some reason it ke
sudo
You need to reclaim ownership of the .npm directory.
sudo chown -R $(whoami) ~/.npm
and need the write permission in node_modules directory:
sudo chown -R $(whoami) /usr/lib/node_modules