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.
我使用 Express 作为我的 Node.js Web 框架,使用 MongoDB 作为持久层。当我使用 'node app.js' 命令运行服务器时,偶尔会出现一些错误,例如 mongoose 错误或 imagemagick 错误,hole node 进程将死亡并且无法从浏览器中使用。我使用了 Express 的错误处理程序,但这仍在发生。有人可以帮忙吗?
process.on('uncaughtException', function (err) { console.error(err); console.log("Node NOT Exiting..."); });
clusters.on('death', function(worker) { app.listen(3000); });