reactjsnpmnpx

when generating a react project then receiving a npm error


npm error code ENOENT npm error syscall open npm error path C:\Users\a\package.json npm error errno -4058 npm error enoent Could not read package.json: Error: ENOENT: no such file or directory, open 'C:\Users\a\package.json' npm error enoent This is related to npm not being able to find a file. npm error enoent

npm error A complete log of this run can be found in: C:\Users\a\AppData\Local\npm-cache_logs\2024-07-11T16_49_41_924Z-debug-0.log

To creat a react project

Inside that directory, you can run several commands:

npm start Starts the development server.

npm run build Bundles the app into static files for production.


Solution

  • install create-react-app globally:


    npm install -g create-react-app

    Now you can run:

    create-react-app project-name