Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下简单的脚本立即退出:
process.on('message', function () { });
在侦听消息时保持 node.js 进程运行的正确方法是什么?
您总是可以这样做process.stdin.resume();,这将使您的进程保持打开状态,直到在标准输入上收到 EOF 或您明确退出(标准输入流最初会暂停以防止这种情况发生,除非您真的想要它)。
process.stdin.resume();