React Native 프로젝트 설정
React Native 프로젝트 초기 설정 가이드
새 React Native 프로젝트 시작을 위한 초기 설정 가이드야. CLI 설치부터 프로젝트 생성까지 핵심만 빠르게 알아보자.
-
React Native CLI 설치 글로벌 설치로 어디서든
react-native명령어를 쓸 수 있게 해줘.bash npm install -g react-native-cli -
새 프로젝트 생성
npx로 최신 버전의 프로젝트를 초기화할 수 있어.YourProjectName은 원하는 프로젝트 이름으로 바꿔주면 됨.bash npx react-native init YourProjectName이제 생성된 프로젝트 폴더로 이동해서 개발을 시작하면 돼.
여기서 배울 것
- React Native CLI 전역 설치 방법
- 새 React Native 프로젝트 생성 명령어
- npx를 이용한 프로젝트 초기화
원본 파일 보기 (.claude/skills/tn-react-native-setup/SKILL.md)
---
name: React Native 프로젝트 설정
description: This skill should be used when the user asks to set up a new React Native project or initialize a React Native application.
version: 1.0.0
source: /home/son/prj/resume/backup_notes_260317/notion/Tech Note/React Native Setup 1c36e14b9302405c8ef11eb46e4c5a3b.md
---
# React Native Setup
Install React Native CLI:
Open your terminal and run:
```
npm install -g react-native-cli
```
```
npx react-native init YourProjectName
```