💻
[React Native] 프로젝트 생성
On this page
❐ React Native 프로젝트 생성
아래 명령어를 실행하여 React Native 프로젝트를 생성합니다.
npx react-native init [프로젝트명]
❐ iOS앱 실행
생성한 프로젝트 폴더 안에서 아래 명령어를 실행하여 iOS앱을 실행합니다.
npx react-native run-ios
iOS앱이 실행됩니다.
❐ Android앱 실행
생성한 프로젝트 폴더 안에서 아래 명령어를 실행하여 Android앱을 실행합니다.
npx react-native run-android
Android앱이 실행됩니다.
<참고>
아래 React Native 사이트를 참고하여 작성하였습니다.
React Native 사이트 : reactnative.dev/docs/...-setup