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}`); });