score:482

Accepted answer

check if node_modules directory exists. after a fresh clone, there will very likely be no node_modules (since these are .gitignore'd).

solution

run npm install (or yarn) to ensure all deps are downloaded.

alternative solution

if node_modules exists, remove it with rm -rf node_modules and then run npm install (or yarn).

score:0

just run these commands

npm install
npm start

or

yarn start

hope this will work for you thank you

score:0

none of these solutions worked for me. i found that the problem was the directory i was creating the project in, i am not sure why but when i created the project outside of that directory it worked. my solution was changing the directory to a new one from "react/ionic" to "ionic-react". it could be that not only the project itself should be lowercase, but its parent folder as well, or it could be that the "/" in the directory name be the issue. hope this helped.

score:0

fixed it with

npm install --legacy-peer-deps

if you use npm to install and npm version is less than 7, then its npm most likey to behave in a smarter way. so, it will try to install react with its other depencies(peer deps)(higher versions if found), which will likely to break the library react. attaching --legacy-peer-deps will tell npm "not to do something new", and install whats given in package.json...

btw people seem to find yarn comfortable because this "not to install higher version if even found" is built in yarn automatically

reference: a referenced question

score:0

after spending too much time trying all the solutions above, i can say for sure:

if you ran into this issue, check your path. if the path contains any special character or spaces just rename it and make sure that the new path doesn't have any spaces or special character. then run it again .

score:0

this workaround works for me

// in your package.json replace 
"start": "react-scripts start"

// with:
"start": "node_modules/react-scripts/bin/react-scripts.js start"

score:1

i just randomly experienced this "react-scripts: command not found" error after issuing a react-scripts build request, which was previously working just fine.

a simple reboot of my system corrected the issue.

score:1

if anyone is willing to use npm only, then run this npm i react-native-scripts --save, then npm start or whatever the command you use

score:1

solution 1:

delete the package-lock.json file and then type -> npm install

solution 2:

/users/piyushbajpai/.npm/_logs/2019-03-11t11_53_27_970z-debug.log

like this is my debug path --> so this you will find in the console -> press on command and click on the link, you will find error line; like this:

verbose stack error: nest_form@0.1.0 start: react-scripts start

solution 3:

delete the node_module and npm i with fresh way.

solution 4:

go to node_module and delete jses folder and delete it, then do npm i and again start with npm start

score:1

i had issues with latest version of yarn 1.15.1-1

i've fixed it by downgrading to lower version sudo apt-get install yarn=1.12.3-1

score:1

the solution that worked for me is below. try creating react app with this command.

create-react-app react-app --scripts-version 1.1.5

score:1

i ran into this error after renaming the directory with the @/ symbol on macos to match the name of my npm package namespace.

when the npm command looked for installed packages in my local node_modules, it couldn't find it due to the way macos was rewriting the directory path. after renaming the directory without @/ i was up and running again.

score:1

just you have to restore packages to solve this issue, so just run command :

npm install or yarn install

score:1

this worked for me.

if you're using yarn:

  1. delete yarn.lock
  2. run yarn
  3. and then yarn start

if you're using npm:

  1. delete package-lock.json
  2. run npm install
  3. and then npm start

score:1

if the above solutions don't work and you saw the below error:

npm err! the operation was rejected by your operating system.

npm err! it is likely you do not have the permissions to access this file as the current user

try with sudo npm install

score:1

i tried every answer but cleaning my npm cache worked..

steps:

  1. clean cache =====> npm cache clean force.
  2. reinstall create-react-app =====> npm install create-react-app.
  3. npm install.
  4. npm start !!!

score:1

for me it was deleting package-lock.json and node_modules and then run npm install again.

score:2

deleting package-lock.json and node_modules then npm install worked for me.

score:2

if none of the other answers work properly (after updating the npm etc). i would strongly recommend you to install the project on your desktop.

create-react-app project_name

score:2

if anyone still have this problem after trying these solutions: check your project path as node has some issues working with spaced dir names. i changed all directories names that had spaces in their names and it worked perfectly.

solution idea taken from: https://npm.community/t/react-scripts-not-found/8574

i am using yarn btw

score:2

you shoundt use neither spaces neither some special caracters in you path, like for example using "&". i my case i was using this path: "d:\p&d\mern" and because of this "&" i lost 50 minutes trying to solve the problem! :/

living and learning!

score:2

if you have tried everything and nothing solved it, try to rename the directories name. react will not start if the folder's name contains uppercase letters.

score:3

just ran into this problem after installing material-ui.

solved it by simply running npm install again.

score:3

just doing an yarn install solved the problem for me

score:3

if you are having this issue in a docker container just make sure that node_modules are not added in the .dockerignore file.

i had the same issue sh1 : react scripts not found. for me this was the solution

score:4

this boggles me time to time when i have a fresh start with create-react-app, please make sure your node_env variable is set to development not production, as devdependencies in your package.json will not be installed by npm install.

score:5

npm install --save react react-dom react-scripts

above command worked for me.

score:5

using npm i --legacy-peer-deps worked for me.

i do not know specifically which operation out of the following it performed:

  • installing the peer dependencies' latest stable version.
  • installing the peer dependencies' version which the core dependy you are installing uses.

but i think it performs the latter operation. feel free to let me know if i'm wrong ^-^

score:10

this error occurs when you install package with npm install instead of yarn install or vice-versa.

score:12

i had this problem for ages and i eventually found my solution by sheer chance.
turns out, you can't have spaces or wacky characters in any folder names.

e.g. ~/projects/tutorial/reactjs/javascript framework: reactjs/app-name won't work because javascript framework: reactjs contains spaces.
in general, it's probably not great practice to be using spaces in folder/file names anyway but i hope this saves someone at least 4 hours of trial and error.

also, any non-alphanumeric characters should be avoided.

score:15

https://github.com/facebookincubator/create-react-app

npm install -g create-react-app

create-react-app my-app
cd my-app/
npm start

you install the create-react-app package globally. after that you run it and create a project called my-app. enter your project folder and then run npm start. if that doesn't work try running npm install and then npm start. if that doesn't work as well, try updating your node version and/or npm.

score:15

in package.json, i changed

"start": "react-scripts start"

to

"start": "node_env=production node_modules/react-scripts/bin/react-scripts.js start"

i hope this solves the problem for some people. although the other solutions above seem not to work for me.

score:18

you should not install react-scripts globally, for me this fixed the problem:

npm install --save react react-dom react-scripts

if this still dont work :

  1. update to latest npm version : npm install -g npm@latest
  2. delete node_modules directory
  3. reinstall all dependencies : npm install

score:37

i had similar issue. in my case it helped to have yarn installed and first execute the command

yarn

and then execute the command

yarn start

that could work for you too if the project that you cloned have the yarn.lock file. hope it helps!

score:52

tried all of the above and nothing worked so i used npm i react-scripts and it worked


Related Query

More Query from same tag