【问题标题】:Exception has occurred: Error: ENOENT: no such file or directory发生异常:错误:ENOENT:没有这样的文件或目录
【发布时间】:2022-02-07 22:31:30
【问题描述】:

我正在尝试调试我的 nodejs 应用程序,但在运行 javascript 调试器时,它显示错误。

这是我项目的 package.json 文件。

{
   "name": "server",
   "version": "1.0.0",
   "description": "server side",
   "main": "index.js",
   "scripts": {
     "start": "nodemon index.js",
     "debug": "nodemon --inspect index.js"
   },
   "keywords": [],
   "dependencies": {
     "aws-sdk": "^2.1069.0",
     "bcryptjs": "^2.4.3",
     "body-parser": "^1.19.1",
     "cors": "^2.8.5",
     "dotenv": "^16.0.0",
     "express": "^4.17.2",
     "express-validator": "^6.14.0",
     "jsonwebtoken": "^8.5.1",
     "mongoose": "^6.2.0",
     "multer": "^1.4.4",
     "nodemon": "^2.0.15"
   },
   "devDependencies": {},
   "author": "alkairis",
   "license": "ISC"
}

【问题讨论】:

标签: javascript node.js package.json server-side nodemon


【解决方案1】:

如果您使用的是 VSCode,我建议您在检查时公开一个端口,如下所示:

nodemon --inspect=0.0.0.0:9229 index.js

然后你将类似这样的配置添加到你的.vscode/launch.json:

{
              "type": "node",
              "request": "attach",
              "name": "Attach to Remote",
              "restart": true,
              "stopOnEntry": true,
              "port": 9229,
              "address": "0.0.0.0",
              "localRoot": "${workspaceFolder}",
              "sourceMaps": true,
              "protocol": "inspector"
}

【讨论】:

  • 不,没有用
猜你喜欢
  • 2022-06-15
  • 1970-01-01
  • 2017-10-07
  • 1970-01-01
  • 2019-03-09
  • 2017-12-28
  • 2022-01-16
  • 2021-03-30
  • 1970-01-01
相关资源
最近更新 更多