node.js 공식 웹 사이트에 접속해 14.4.0
버전 다운로드
64비트 윈도우 운영체제인 경우 node-v14.4.0-x64.msi
다운로드
다운로드한 파일을 실행해 node.js 설치
설치 도중 다음 화면에서는 체크 표시를 하지 않고 [Next] 클릭
Window + R
을 누른 후 cmd
를 입력해 명령 프롬프트 실행
→ node -v
, npm -v
명령어로 설치된 node.js와 npm의 버전 확인
cmd 창에서 cd
명령어를 이용해 생성한 폴더 경로로 이동
npm install -g yarn
명령어로 yarn 설치
→ yarn -v
명령어로 설치된 yarn의 버전 확인
npm install -g create-react-app
명령어로 create-react-app 설치
→ create-react-app client
명령어로 'client' 프로젝트 생성
→ cd client
명령어로 client 경로로 이동
→ dir
명령어로 현재 위치에 package.json, node_modules 등의
파일과 폴더가 생성된 것을 확인
client 경로에서 yarn start
명령어로 react 서버 실행
크롬 웹 브라우저에서 http://localhost:3000/ url을 열면
다음과 같은 화면을 확인할 수 있다.
src 폴더의 index.js 파일을 열어
<React.StrictMode>
, </React.StrictMode>
태그 삭제
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode> // 삭제
<App />
</React.StrictMode> // 삭제
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();