如何正确处理 express js 错误?

how to handle express js errors properly?

我已经使用 expressjs 和 socket.io 实现了一个非常简约的后端服务,以将串行数据读数从 arduino 传输到反应前端。我使用 SerialPort 包来实现这一点。我的问题是当我尝试连接到不可用或未连接的串行端口时,SerialPort 库抛出以下错误。

(node:940) UnhandledPromiseRejectionWarning: Error: Opening COM6: File not found
(Use `node --trace-warnings ...` to show where the warning was created)
(node:940) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1)

这个错误是完全可以接受的并且是预料之中的,因为我正在尝试连接到一个不存在的设备。但我想很好地处理这个错误并通知前端串口连接失败。为此,我使用了如下所示的 try catch 块。

io.on("connection", function (socket) {
  socket.on("start", function () {
    console.log("Device connection starting...");

    try {
      port = new SerialPort("COM6", { baudRate: 9600 });
      parser = port.pipe(new Readline({ delimiter: "\n" }));
    } catch (error) {
      console.log(error);
      io.emit("error", "Can't Connect!");
      console.log("error msg sent");
    }
  });
});

但是当抛出错误时,这个 catch 块不会 运行。我该怎么做才能解决这个问题?我该如何处理这个错误?

不使用 try-catch-block,而是使用错误事件:

port = new SerialPort("COM6", { baudRate: 9600 })
.on("error", function(error) {
  console.log(error);
  io.emit("error", "Can't Connect!");
  console.log("error msg sent");
});
parser = port.pipe(new Readline({ delimiter: "\n" }));