Node.js 시작하기
보너스: Live compile + run (실시간 컴파일 + 실행)
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts"
},보너스 포인트
Last updated