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.
可能重复: 如何在 Node.JS 中退出
我正在使用 node.js 在后台导入一些数据,并且我将使用 cron 在后台每隔一天运行一次脚本。我不需要它来听。节点脚本运行后如何退出?我应该使用 process.exit() 还是有更好的方法?
如果它没有绑定到数据库或端口上的列表,它将自动关闭。如果您已连接到数据库并需要关闭进程,则process.exit();在清理连接后使用。
process.exit();