"Permission Denied" 尝试在 OSX 上全局安装 ESlint 时

"Permission Denied" when trying to install ESlint on OSX globally

这就是我要在 mac 上做的事情:npm install eslint -g

然后我得到一个 EACCES: permission denied,其中包含以下详细信息:

npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'unlink',
npm ERR!   path: '/HOME/.node_modules_global/lib/node_modules/eslint/LICENSE' }

如何在不使用 sudo 的情况下全局安装 ESlint?或者我应该使用 sudo?

将此添加到 ~/.npmrc

prefix = ${HOME}/.npm-packages

https://github.com/sindresorhus/guides/blob/master/npm-global-without-sudo.md

在提问之前也进行搜索:
npm global path prefix
NPM modules won't install globally without sudo