0
votes

PS C:\Users\USER\Desktop\react> npm start npm ERR! code ENOENT npm ERR! syscall open npm ERR! path C:\Users\USER\Desktop\react\package.json
npm ERR! errno -4058 'C:\Users\USER\Desktop\react\package.json' npm ERR! enoent This is related to npm not being able to find a file. npm ERR! enoent

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\USER\AppData\Roaming\npm-cache_logs\2020-10-15T10_23_32_090Z-debug.log

1
check this https://stackoverflow.com/a/18020195/2739391. even if you provide more details that will be good like what command you use to create react project which dependency installed ? check npm and node versions.Atal Shrivastava

1 Answers

1
votes

It looks like you're trying to run an npm script such as "npm start" in a folder that doesn't have a "package.json" file. Make sure you are in your React project's working directory and try again.