본문 바로가기
프로그래밍 에러 Error

[리액트 에러 해결] 'react-scripts'은(는) 내부 또는 외부 명령 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다.

by 메모장2 2021. 3. 28.
반응형

'react-scripts'은(는) 내부 또는 외부 명령 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다.

갑자기 react가 실행되지 않는다.

yarn start, npm run start 둘다 실행되지 않는다.

 

 

yarn start 명령어 실행시 에러 발생

npm run start 명령어 실행시에도 에러 발생

 

구글 검색으로 yarn add global react-scripts를 입력하면 해결된다고 해서 했더니

package.json에서 dependencies들이 뭔가 수정이 됐다.

 

 

참고 : thespoiler.tistory.com/21


react-router-dom 에러 발생

그래서 이제 실행이 되는건가 싶었는데, 이번엔 다른 에러가 발생했다.

해결방법2 : 아래 명령어 실행

 

npm install --save react-router-dom

 

 

 

 

참고 : grandj.tistory.com/201

참고 : velopert.com/3417

 

React create-react-app 설치 및 세팅

React create-react-app 설치 및 세팅 https://github.com/facebook/create-react-app#creating-an-app npx create-react-app my-app (내가 만들 앱 이름) cd my-app (내가 만들 앱 이름) npm start 대부분 프로젝..

grandj.tistory.com

 

반응형