0

I tried different ways about 3 days but my react project don't work. When i pulled code from GitHub repository, i taken this error, i removed node_modules then i run npm install. My project still don't work. Could you please help me?

npm ERR! code ENOENT
npm ERR! syscall spawn git
npm ERR! path git
npm ERR! errno -4058
npm ERR! enoent Error while executing:
npm ERR! enoent undefined ls-remote -h -t https://github.com/securedeveloper/js-xlsx.git
npm ERR! enoent
npm ERR! enoent
npm ERR! enoent spawn git ENOENT
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
Thân LƯƠNG Đình
  • 3,082
  • 2
  • 11
  • 21
E c
  • 11
  • 1

1 Answers1

3
npm ERR! enoent undefined ls-remote -h -t https://github.com/securedeveloper/js-xlsx.git

The above error message tells us that we need to install Git. After installing Git, you try again npm install.

Thân LƯƠNG Đình
  • 3,082
  • 2
  • 11
  • 21