typescript - ts-node-dev 不应用自动重新加载的更改

标签 typescript nodemon feathersjs ts-node

我已经在 Typescript 中使用 FeathersJS 构建了一个应用程序,但是尽管 typescript 的 nodemon (ts-node-dev) 说当 typescript 文件更改时服务器已重新启动,但更改并未应用。
我总是需要终止应用程序并重新开始以查看更改。

这是日志:

[INFO] 15:43:51 Restarting: C:\api\src\models\favorites.model.ts has been modified
Using ts-node version 7.0.1, typescript version 3.9.3
info: Feathers application started on http://localhost:3030

这是dev package.json 上的脚本:
ts-node-dev --no-notify src/
这是 tsconfig.json:
{
  "compilerOptions": {
    "target": "es2018",
    "module": "commonjs",
    "outDir": "./lib",
    "rootDir": "./src",
    "strict": true,
    "esModuleInterop": true
  },
  "exclude": [
    "test"
  ]
}

这是 package.json:
{
  "homepage": "",
  "private": true,
  "main": "src",
  "keywords": [
    "feathers"
  ],
  "contributors": [],
  "bugs": {},
  "directories": {
    "lib": "src",
    "test": "test/",
    "config": "config/"
  },
  "engines": {
    "node": "^12.0.0",
    "npm": ">= 3.0.0"
  },
  "scripts": {
    "test": "npm run compile && npm run mocha",
    "dev": "ts-node-dev --no-notify src/",
    "start": "npm run compile && node lib/",
    "mocha": "ts-mocha \"test/**/*.ts\" --recursive --exit",
    "compile": "shx rm -rf lib/ && tsc"
  },
  "prettier":{
    "singleQuote": true
  },
  "standard": {
    "env": [
      "mocha"
    ],
    "ignore": []
  },
  "types": "lib/",
  "dependencies": {
    "@feathersjs/authentication": "^4.5.3",
    "@feathersjs/authentication-local": "^4.5.4",
    "@feathersjs/authentication-oauth": "^4.5.4",
    "@feathersjs/configuration": "^4.5.3",
    "@feathersjs/errors": "^4.5.3",
    "@feathersjs/express": "^4.5.4",
    "@feathersjs/feathers": "^4.5.3",
    "@feathersjs/transport-commons": "^4.5.3",
    "compression": "^1.7.4",
    "cors": "^2.8.5",
    "feathers-mongoose": "^8.3.0",
    "helmet": "^3.22.0",
    "mongodb-core": "^3.2.7",
    "mongoose": "^5.9.16",
    "serve-favicon": "^2.5.0",
    "winston": "^3.2.1"
  },
  "devDependencies": {
    "@types/compression": "^1.7.0",
    "@types/cors": "^2.8.6",
    "@types/helmet": "0.0.47",
    "@types/jsonwebtoken": "^8.5.0",
    "@types/mocha": "^7.0.2",
    "@types/mongoose": "^5.7.21",
    "@types/serve-favicon": "^2.5.0",
    "axios": "^0.19.2",
    "mocha": "^7.2.0",
    "nodemon": "^2.0.4",
    "shx": "^0.3.2",
    "ts-mocha": "^7.0.0",
    "ts-node-dev": "^1.0.0-pre.44",
    "tslint": "^6.1.2",
    "typescript": "^3.9.3"
  }
}

最佳答案

您需要告诉编译器注意更改。添加以下脚本或调整您的 compile带有监视标志的脚本:

"watch-ts": "tsc -w"

或者
"compile": "shx rm -rf lib/ && tsc -w"

我仔细查看了你的脚本,在我看来你应该从编译的文件(我猜它们在 lib 文件夹中)启动你的服务器。如果这是真的,那么您运行服务器的脚本应该是例如:
"dev": "ts-node-dev --no-notify lib/server.js"

您需要在两个单独的终端选项卡中运行:

npm run compile



npm run dev

关于typescript - ts-node-dev 不应用自动重新加载的更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62092769/

相关文章:

TypeScript 无法使用 keyof 泛型参数作为对象的键

javascript - 普通数组与反引号数组生成的比较

javascript - Gulp-Nodemon 监视更改并仅重新启动一次

javascript - 如何通过 grunt-nodemon 重启 node.js 服务器时输出时间戳?

javascript - 将 sql 查询转换为 sequelize

typescript - 使用 yarn 和 ts 3.0 管理 typescript 项目 monorepo

javascript - 在 Typescript 中将 JSON API 响应中的字符串转换为 Typescript 中的数字

firebase - 有没有办法监控 Firebase 命令行的变化,例如 "nodemon"?

javascript - 如何为 Jest 初始化 Feathers 实例一次

sequelize.js - sequelize 没有将关联的表数据作为对象返回