node에서 typescript 사용하기

Holyday33·2022년 6월 25일
0
post-custom-banner

다음 라이브러리 설치

npm i @types/node typescript ts-node

참고링크

  • app.ts 실행방법

    • 현재 app.ts

      import http from 'http';
      const server = http.createServer((req, res) => {
        console.log(req.url, req.method);
        res.end('Hello node');
      })
      
      server.listen(3660)
    • 다음 명령어로 실행

      ts-node app.ts
profile
Why so serious?

0개의 댓글