DEV Community

James Sessford
James Sessford

Posted on • Originally published at jamessessford.com on

NPM

I was setting up a Rasperry Pi over the weekend and I'd forgotten how to set up NPM permissions so I don't have to use sudo to install global packages

mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
Enter fullscreen mode Exit fullscreen mode

That's a relief - sudo npm'ing anything is a terrifying prospect!

Top comments (0)