gpt4 book ai didi

node.js - 退出时的 Node js进程无法永远使用

转载 作者:搜寻专家 更新时间:2023-10-31 22:43:49 25 4
gpt4 key购买 nike

我想要一些关于进程退出的工作。

但是 process.on('exit') 无法使用 express 或 socket.io 或 mysql 等工作。

process.on('exit', function() {
console.log('Server exit.');
});

只有这段代码有效。

var mysql = require('mysql');
var conn = mysql.createConnection();

conn.connect();

process.on('exit', function() {
console.log('Server exit.');
});

这是行不通的。

最佳答案

你可以通过做两件简单的事情让它工作:

  1. 不使用 exit 事件,而是使用 SIGINT 事件(而不是 process.on('exit',function(){/*stuff here */}); 使用 process.on('SIGINT',function(){/*stuff here*/});
  2. 启动 forever 脚本时,不要只是执行 forever start your-script.js,而是键入 forever start your-script.js --killSignal=SIGINT<

这对我有用,但我的脚本没有使用太多 mysql 也没有使用任何 express,所以它可能不适合你

关于node.js - 退出时的 Node js进程无法永远使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18928918/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com