1

Koa has implemented not having a web server shut down when one page has an error. My question.... is this error handling behaviour robust enough that one no longer needs to use Forever when hosting a node site?

4

1 回答 1

4

您仍然应该使用forever(或者nodemon,在某些情况下更容易使用)来保持服务器运行。还有其他一些事情会导致它在生产环境中崩溃,而不仅仅是错误的请求。

在开发过程中,我在一些 koa 应用程序上看到了不使用forever/的异常正常运行时间nodemon,但我不会在生产中这样做。它要求一个凌晨 3 点的电话 :)

如果您使用的是 Linux/Unix,您还应该考虑使用tmux使其在单独的终端会话中运行,否则它可能会在您的终端会话中超时。(键入tmux new -s koa以开始)。这是一篇关于使用tmuxwith的文章upstarthttps ://bowerstudios.com/node/953

于 2015-01-08T09:47:46.843 回答