Notice
Recent Posts
Recent Comments
Link
«   2025/07   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

easy-1

[React] 환경 설정 본문

Web/React

[React] 환경 설정

easy-1 2022. 5. 2. 09:20

<적용방법>

1. 런타임 환경으로 사용되는 Node.js 설치

   > https://nodejs.org 사이트에서 다운로드

2. 설치 확인

   > $node -v

   > $npm -v

3. 프로젝트 생성

   > $npm create-react-app my-app

4. 프로젝트 실행

   > $cd my-app

   > $npm start

 

* 튜토리얼 가이드 : https://reactjs.org/tutorial/tutorial.html

 

Tutorial: Intro to React – React

A JavaScript library for building user interfaces

reactjs.org

 

'Web > React' 카테고리의 다른 글

[React] React useState  (0) 2022.05.28
[React] React Router  (0) 2022.05.28
Comments