Dev_Study/React
[React] 1. React 프로젝트 생성하기
LeeDaniel
2021. 1. 22. 22:04
1. Node.js 설치하기
Node.js
Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.
nodejs.org
2. Node.js 설치확인
node -v
3. npm 설치확인
npm -v
4. create-react-app 설치
npm install -g create-react-app
5. create-react-app 설치확인
create-react-app -V
6. react프로젝트를 생성할 경로로 이동후 명령어 실행
npx create-react-app .
7. react프로젝트 실행
npm run start
728x90
반응형