Error installing sudo-free NPM packages

Asked

Viewed 245 times

-1

I have this difficulty, I wonder if it would be possible to run without sudo

MacBook-Air-de-Alan:~ collins$ npm i -g react-native-cli
npm WARN checkPermissions Missing write access to /Users/collins/.npm-global/lib/node_modules/react-native-cli
npm WARN checkPermissions Missing write access to /Users/collins/.npm-global/lib/node_modules
npm ERR! path /Users/collins/.npm-global/lib/node_modules/react-native-cli
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! syscall access
npm ERR! Error: EACCES: permission denied, access '/Users/collins/.npm-global/lib/node_modules/react-native-cli'
npm ERR!  [Error: EACCES: permission denied, access '/Users/collins/.npm-global/lib/node_modules/react-native-cli'] {
npm ERR!   stack: 'Error: EACCES: permission denied, access ' +
npm ERR!     "'/Users/collins/.npm-global/lib/node_modules/react-native-cli'",
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   syscall: 'access',
npm ERR!   path: '/Users/collins/.npm-global/lib/node_modules/react-native-cli'
npm ERR! }
npm ERR! 
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR! 
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator (though this is not recommended).

npm ERR! A complete log of this run can be found in:
npm ERR!     /Users/collins/.npm/_logs/2019-06-13T22_24_55_458Z-debug.log
  • It can help you: https://docs.npmjs.com/resolving-eacces-permissions-errors-when-installing-packages-globally

1 answer

0

Use nvim to edit the ~/. bashrc file and add these lines:

npm set prefix ~/.npm
PATH="$HOME/.npm/bin:$PATH"
PATH="./node_modules/.bin:$PATH"

After that, run the command:

source ~/.bashrc

Browser other questions tagged

You are not signed in. Login or sign up in order to post.