타입스크립트 설치하기
npm install -g typescript
버전확인하기
tsc -v
패키지를 생성하기위해 아래 명령어를 사용한다.
package.json 과 tsconfig.json이 생성된다.
npm init -y
tsc -- init
express 설치한다.
npm install express
데브 의존성, 노드몬 설치
npm i -D typescript ts-node nodemon @types/node @types/express
아래 사이트에서 @types 를 검색해서 사용하면 된다
https://www.typescriptlang.org/dt/search?search=
프로젝트 수정 후 빌드 후 시작
npm run build
npm run start
반응형
'프로그래밍 언어 > Node.js' 카테고리의 다른 글
window yarn 설치 (0) | 2021.12.10 |
---|---|
[nodejs] error cannot find module 'config' (0) | 2021.12.09 |
[nodejs] nodemailer (0) | 2021.04.02 |
node.js 프로젝트 만들기 환경설정 및 설치 (0) | 2020.08.12 |
노드 사용시 초기 설정과 설치 파일 ( node init, install ) (0) | 2020.08.05 |