-
ReactJS (1)웹개발/JavaScript 2020. 12. 31. 15:04
* Requirements
(1) node -v
: nodejs 버전 확인
(2) npm
: nodejs와 같이 설치됨
(3) npm install npx -g
: npx 설치
(4) vscode
: 에디터 설치, 다른 코드 에디터 사용해도 됨
(5) git --version
: 깃 설치 확인
* Creating your first React App
(1) cd Documents
(2) npx create-react-app movie_app
(3) vscode terminal 에서 npm start 입력
* Creating a Githun Repository
(1) git init
(2) git add .
(3) git commit -m "#1.0 Creating your first React App"
(4) git push origin master
'웹개발 > JavaScript' 카테고리의 다른 글
ReactJS (3) (0) 2021.01.03 ReactJS (2) (0) 2020.12.31 JavaScript로 To Do List 만들기 (0) 2020.12.30 JavaScript (4) (0) 2020.12.30 JavaScript (3) (0) 2020.12.29