React.JS

[React.js]명령어로 리액트 프로젝트 생성하기

hans-j 2023. 12. 3. 22:30

리액트 프로젝트 설치 전에 다운로드해야할 프로그램들

 

Node.js

npm ( Node Package Manager)


Node.js

 

 https://nodejs.org/ko/download/


npm 

$ node -v

 

npm 으로 진행할 경우 아래의 명령어를 실행

npx create-react-app hello-react

 

OR

yarn

https://classic.yarnpkg.com/en/docs/install#windows-stable

 

Yarn

Fast, reliable, and secure dependency management.

classic.yarnpkg.com

 

yarn으로 진행할 경우 아래의 명령어를 실행

yarn create react-app hello-react

프로젝트가 있는 경로로 이동하기

cd hello-react
yarn start (혹은 npm start)