시작하기!

1. 노드설치 -> https://nodejs.org/en/

 

Node.js

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

nodejs.org

2. 버젼 체크

Node >= 14.0.0 그리고 npm >= 5.6

 

3. 설치 -> https://reactjs.org/docs/create-a-new-react-app.html#create-react-app

npx create-react-app <프로젝트이름>
cd <프로젝트 이름>
npm start

 

4. 설정 확인

파일 packaged.json

...
"scripts": {
	"start": "react-scripts start",
	"build": "react-scripts build",
	"test": "react-scripts test",
	"eject": "react-scripts eject"
},
 ...

5. 실행 

npm run start

 

+ Recent posts