标签: javascript typescript ts-node
打字稿工作流程的新增功能。使用node + JS时,我通常有一个dev形式的nodemon index.js脚本。使用打字稿,我看到我有2个选项:
dev
nodemon index.js
nodemon --exec "ts-node index.ts"
concurrently "tsc -w" "nodemon -w dist dist/index.js"
在打字稿社区中,哪一种使用率更高?有什么影响?
答案 0 :(得分:0)
如果您熟悉nodemon,可以尝试 tsmon https://www.npmjs.com/package/tsmon
tsmon index.ts