[RN] 프로젝트 생성 시 에러

JJeong·2022년 10월 8일
0

배경

새로운 RN 프로젝트를 만들 때마다 같은 에러를 만나는데 매번 해결책을 검색하고 있다.🫠 이럴 바엔 정리해두자고 생각해서 쓰는 포스팅!

에러 메시지

TypeError: cli.init is not a function for react native

해결

https://stackoverflow.com/questions/72768245/typeerror-cli-init-is-not-a-function-for-react-native

That is error is from the new version 0.69.0 You can use npx react-native init ProjectName --version 0.68.2 and then upgrade to v 0.69 later.

특정 버그가 있는 npx 버전을 사용해서 발생하는 에러이기 때문에 버전을 낮추면 된다고 한다.
실제로 이 방법으로 프로젝트를 잘 생성했다.

0개의 댓글