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