브라우저에서 읽을 수 있도록 build 작업하기


① Node.js 다운로드

Node.js


② CMD (명령 프롬프트 - 터미널 설정)

Microsoft Windows [Version 10.0.19043.1237]
(c) Microsoft Corporation. All rights reserved.

C:\\Users\\USER> **node -v                      설치확인**

v14.18.0                                    **버전확인**

C:\\Users\\USER> **dir**                          **정보검색(mac=ls/window=dir)**

C:\\Users\\USER 디렉터리 
2021-10-10  오전 10:15 <DIR> Desktop        **정보목록 중 데스크탑 이름 확인**

> **cd Desktop**                                **설치경로 선택
																			 (안되면 띄어쓰기나 세미콜론 빼고 다시 시도)**

> **npx create-react-app** westsilver         **westsilver는 나의 폴더명**

> … Happy hacking!                        **설치완료**

<aside> 💡 npx = npm에서 react를 만드는 기능

</aside>


③ React 시작 (VSCode)

// terminal - new terminal

> **npm start**               **react 작동 (가상의 서버를 만든 것)**

> Compiled successfully!

<aside> 💡 React는 Javascript로 돌아가기 때문에 컴파일이 필요 그 컴파일을 작업해주기 위해 가상의 서버를 만든 것

</aside>