📱Mobile/오류해결

[React Native] react-native init 오류 - TypeError: cli.init is not a function

뉴발자 2024. 1. 11.
728x90

 

 

 

 

 

 

 

 

 

 

 

 

 

 

그림 1-1. cli.init is not a function 에러

 

 

에러 상황

개인 공부를 위해 새로운 react-native 프로젝트를 생성하는 도중 에러가 발생했다.

 

프로젝트가 잘 생성되다가 노드 모듈까지 설치한 후 에러가 발생했다.

 

 

에러 코드

TypeError: cli.init is not a function
728x90

 

 

해결 방법

여러 게시글을 찾아보면서 비슷한 이슈를 많이 찾아볼 수 있었다.

 

해당 오류는 react-native-cli와 설치하려하는 react-native의 버전이 맞지 않아서 발생하는 오류였다.

 

해결 방법은 공식 문서에 나와있는 방법과 구글에서 찾아본 방법 두 가지가 있다.

 

필자는 전자의 방법으로 해결했다.

 

 

1. 전역으로 설치된 react-native-cli를 삭제한 후 재설치

공식문서에 나와있는 방법으로 전역으로 설치된 react-native-cli를 삭제한 후 프로젝트를 설치하는 방법이다.

npm uninstall -g react-native-cli @react-native-community/cli

 

공식문서에서도 적혀있을 정도로 react-native-cli를 전역으로 설치하는 것을 권장하지 않는다.

If you previously installed a global react-native-cli package, please remove it as it may cause unexpected issues:

 

최신 버전의 react-native를 사용하기 위해선 해당 방법으로 해결하면 된다.

 

 

2. react-native 하위 버전 설치

react-native-cli의 버전이 구버전일 경우 최신 버전이나 호환되지 않는 버전의 react-native는 에러가 발생하게 된다.

 

혹시라도 하위 버전을 사용해도 무관한 경우에는 react-native 자체의 버전을 낮춰서 설치하면 된다.

npx react-native init [프로젝트명] --version 0.68.2

 

두 방법 중 어느 것이 정답은 아니니 본인이 필요한 방법으로 해결한 후 프로젝트를 구성하면 될 것 같다.

 

 

참고 사이트

https://reactnative.dev/docs/environment-setup

 

Setting up the development environment · React Native

This page will help you install and build your first React Native app.

reactnative.dev

 

https://yun5o.tistory.com/entry/cliinit-is-not-a-function-%EC%98%A4%EB%A5%98

 

cli.init is not a function 오류

cli로 프로젝트를 생성하면 아래와 같은 오류가 발생합니다. (npx react-native init 프로젝트명 명령어 실행 후 오류) TypeError: cli.init is not a function Installing react-native... Consider installing yarn to make this faste

yun5o.tistory.com

 

 

 

 

 

 

 

 

 

 

728x90

댓글