React native 프로젝트 만들기(expo x)

2020. 4. 1. 23:24javascript/react-native

1. react-native cli 설치

npm install -g react-native-cli

 

2.  react-nativce 프로젝트 만들기

react-native init projectname

3. 프로젝트 실행

ios를 실행시키고 싶으면 아래의 

Run instructions for ios를 실행시킨다. 

 

android는 

Run instructions fo Android를 실행시킨다.

 

* 처음 설정 할 때 만났던 오류들 *

error Error: Failed to install CocoaPods dependencies for iOS project, which is required by this template.

 

위 오류를 해결하기 위해서 

ios 폴더로 이동하여 아래의 명령어를 입력하면 된다.

sudo xcode-select --switch /Applications/Xcode.app
pod install

'javascript > react-native' 카테고리의 다른 글

expo cli Vs react-native cl  (2) 2019.04.02
react-native AsyncStorage 사용하기  (0) 2018.12.22
react-navigation사용하기  (0) 2018.12.22
react-native 개발 환경 설정하기(expo)  (0) 2018.12.22