PROGRAMING/React

[REACT] 'react-scripts' is not recognized

donghunl 2024. 2. 10. 02:22
반응형

When you execute " npm start ", you get below error message.

 

'react-scripts' is not recognized as an internal or external command, operable program or batch file.

 

  • If react-scripts is present in package.json, then just type this command

npm install

  • If react-scripts is not present in package.json, then you probably haven't installed it. To do that, run:

npm install react-scripts --save

 

 

반응형