Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
process
process.on()
process.on("SIGINT", () => { console.log("收到 SIGINT 信号"); });
"beforeExit"
"exit"
process.on("beforeExit", code => { console.log(`事件循环已空!`); }); process.on("exit", code => { console.log(`进程以代码 ${code} 退出`); });