-
Vsc & Nodejs & React & Typescript 사용하기
기본 설치
Vsc설치
2020.07.03 - Vsc, VSCode(Visual Studio Code) 설치
Nodejs설치
프로젝트 생성
typescriptex1이라는 프로젝트 생성하는 예제
'터미널'->'새터미널'
npx create-react-app typescriptex1 --template typescript
..자동 설치 과정동안 잠시 기다리기...
프로젝트 실행
vsc터미널에서
npm start
시간이 어느정도 지나면
잠시 후 자동으로 웹브라우저가 시작되며 'http://localhost:3000/'창이 창이 열리고 기본화면을 볼 수 있다.
이제 구동되는 동안 'xxx.tsx'파일의 변화를 감지하여 자동으로 재실행된다.
작업
App.tsx등의 파일을 수정하면 자동으로 재실행된다.
기타 - React
https://ko.reactjs.org/docs/react-api.html
https://ko.reactjs.org/docs/react-component.html
'Typescript' 카테고리의 다른 글
비동기 지연 시간 만들기 (0) 2022.11.25 Vsc & NodeJs 에서 Typescript 빌드 (0) 2022.11.20 node_modules 재설치 (0) 2022.11.18 Type casting, string to number to string (0) 2022.11.18 eslint Plugin "react" was conflicted between "package.json (0) 2022.11.18 Typescript Tsc 컴파일러(Compiler) 옵션 (1) 2022.11.18 any (0) 2022.11.15 tsc tsconfig.json 생성 (0) 2022.11.15