Search code examples
npmvuejs2laravel-5.5

How to solve npm install but permission deny?


I am using Laravel 5.5 with vue.js.

I did try chmod -R 777 node_modules

I run npm install then chmod again.

I still cannot bypass this error.

enter image description here


Solution

  • Use:

    sudo npm install
    

    This will solve the permission issue.