1. Chocolatey 설치
2. Node.js 설치
3. React-Native-Cli 설치
Chocolatey 설치
1. Windows PowerShell 관리자 권한으로 실행
2. 아래 명령어 복사하여 실행하면 설치 진행된다.
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
3. 설치 확인
choco --version
위와 같이 뜨면 설치 완료
Node.js 설치
1. 홈페이지 접속 ( https://nodejs.org/en/download )
LTS 버전으로 다운로드
2. PowerShell 관리자권한으로 재실행, 아래 명령어로 node 설치 확인
node --version
3. node 설치시 npm도 같이 설치됨. 설치 확인 명령어
npm --version
React-Native-Cli 설치하기
1. Node.js command prompt 실행
2. npm 명령어로 React-Native-Cli 설치
npm install -g react-native-cli
3. 리액트 네이티브 버전 확인
react-native -v 또는 react-native --version
'Fronted' 카테고리의 다른 글
[React-native] 검색기능 구현2 (키보드 위 배너 잘림 현상 수정하기 - KeyboardAvoidingView) (0) | 2024.06.21 |
---|---|
[React-Native] 배포 전 디버그, 릴리즈 apk 파일 생성하는 방법 (0) | 2024.04.26 |
[React-Native] VSCode로 프로젝트 실행하기 (yarn 설치, 명령어) (0) | 2024.04.11 |
[React-Native] 윈도우 개발 환경설정3 (안드로이드 스튜디오 SDK, ADK 설정) (0) | 2024.04.11 |
[React-Native] 윈도우 개발 환경설정2 (JDK, 안드로이드 스튜디오 설치) (0) | 2024.04.10 |