Mac M1 React 설치
리액트를 설치하려면 먼저 Node.js가 있어야 한다.
설치가 안 되어있다면 아래 링크 참고!
https://sober-developer.tistory.com/9
[Node.js] 설치하기
Window 기반 설치! 먼저 Node.js 홈페이지에 접속한다. 나는 현재 AWS Lambda 개발을 위해 다운받는 것이므로 AWS Lambda 런타임 설정으로 되어 있는 16 버전을 사용하려고 한다. 원하는 버전을 클릭 후 파
sober-developer.tistory.com
https://reactjs-kr.firebaseapp.com/tutorial/tutorial.html#getting-started
Tutorial: Tic-Tac-Toe – React
The library for web and native user interfaces
react.dev
이제 리액트를 설치하러 가보자!
나는 공식 사이트를 참고했다.
$ npm install -g create-react-app
$ create-react-app my-app
프로젝트 설치가 끝났다면
$ cd my-app
$ npm start
로 프로젝트를 실행한다.
잘 실행된 모습을 볼 수 있다.