[Vuejs]-Npm install package throws error The operation was rejected by your operating system

0👍

It’s a permission issue. Most likely the node binary was installed as a user that has different permissions than you think.

Find the user that node runs as:

ps aux | grep "node"

Then change to that user. Now attempt to make the same symlink. You will receive the same error. Adjust permissions accordingly.

Leave a comment