프로젝트 생성방법은 2가지가 있다.
- Create React Native App
- expo에서 제작한 도구
- 자바스크립트로 작성된 앱만지원한다. (네이티브X)
- react-native init
- react-native 팀의 공식 도구
- native 모듈을 사용하게되면 필수이다.
1) Create React Native App 설치
npm install -g create-react-native-app
create-react-native-app 을 이용하여 앱프로젝트 생성하기
create-react-native-app 프로젝트명
2) React-native 개발환경 설정 (전형적인방법)
- node.js
- 리액트네이티브
- ios 개발환경 (Mac OS, XCode)
- 안드로이드 개발환경 (JDK, 안드로이드SDK, 안드로이드 스튜디오)
'React & React Native ' 카테고리의 다른 글
ES6 - 화살표 함수 (0) | 2018.10.02 |
---|---|
Application Styles has not been registered (0) | 2018.10.01 |
No bundle URL present (0) | 2018.09.21 |
Can't find variable : Fragment (0) | 2018.09.21 |
리액트 네이티브란 ? (0) | 2018.09.20 |