node 환경설정

김수정·2020년 7월 21일
0

nodemon

소스를 watch하고 있다가 바뀌면 다시 빌드해 줍니다.

concurrently

각각의 언어 컴파일이나 여러가지 명령어를 한 번에 실행하고자 할 때 사용됩니다.

{
  "name": "tssort",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "start:build": "tsc -w",
    "start:run": "nodemon build/index.js",
    "start": "concurrently npm:start:*"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "concurrently": "^5.2.0",
    "nodemon": "^2.0.4"
  }
}
profile
정리하는 개발자

0개의 댓글