Error
github에서 react가 있는 폴더를 pull을 하여
npm start
명령어를 실행하였지만 script가 없어 실행이 불가능하다고 다음과 같은 에러가 나왔다.1 2 3 4
> test@0.1.0 start > react-scripts start sh: react-scripts: command not found
Error 해결
다음 명령어를 실행하여 node_modules를 만들어줌
1 2 3 4 5
npm add react-scripts or npm install -save react-scripts