Home > Software engineering >  npm install issue with laravel
npm install issue with laravel

Time:08-13

please i need you help me ,i am learning laravel according to the steps in the documentation ,but every time i run npm install command ,it does not work and i got this error

enter image description here

PS C:\xampp\htdocs\laravel-authentication> npm install
npm ERR! Cannot read properties of undefined (reading 'name')
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Joseph\AppData\Local\npm-cache_logs\2022-08-12T19_52_24_666Z-debug-0.log

CodePudding user response:

cd application first, and then npm install

CodePudding user response:

first check your node version and compare with required.

otherwise use following coommands

npm cache clean --force npm install npm run build

  • Related