GitHub에 있는 코드를 로컬로 Clone하여 디버깅해보고 공부해보려고 할때
Clone해온 프로젝트에 npm start를 하면 실행이 되지 않는다
내 경우엔 다음과 같은 오류 메시지가 나왔다
$ yarn start
yarn run v1.22.17
warning ..\..\..\..\package.json: No license field
$ react-scripts start
'react-scripts'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는
배치 파일이 아닙니다.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
yarn이든 npm이든 실행이 안되면 우선
package-lock.json 및 yarn.lock 파일을 삭제
커맨드창에 npm install
npm start
이렇게 하면 잘 실행된다.