Npm Start Error with Create-React-App

npm start error with create-react-app

Author of Create React App checking in.

You absolutely should not be installing react-scripts globally.
You also don't need ./node_modules/react-scripts/bin/ in package.json as this answer implies.

If you see this:

npm ERR! UpScore@0.6.0 start: `react-scripts start`
npm ERR! spawn ENOENT

It just means something went wrong when dependencies were installed the first time.

I suggest doing these three steps:

  1. npm install -g npm@latest to update npm because it is sometimes buggy.
  2. rm -rf node_modules to remove the existing modules.
  3. npm install to re-install the project dependencies.

This should fix the problem.

If it doesn't, please file an issue with a link to your project and versions of Node and npm.

npm start in create react app throws error(tries searching for react-scripts in weird place)

Your issue are the spaces and the ampersand characters is your path. The shell is interpreting it as different commands 'jobs' and 'cv\soltinia'. These commands are not recognised, which is obvious.

npm start command giving error in react app

try this

Goto > Control Panel\System and Security\System\Advance system setting\Enviroment variable and set system variables path C:\Windows\System32\ variable and restart your System.

after restarting it will work 100%..

thanks



Related Topics



Leave a reply



Submit