Node.js reliability for large application

前端 未结 4 465
-上瘾入骨i
-上瘾入骨i 2021-01-31 02:57

I am new to Node.js and am currently questioning its reliability.

Based on what I\'ve seen so far, there seems to be a major flaw: any uncaught error/exceptions crashes

4条回答
  •  梦谈多话
    2021-01-31 03:20

    Exceptions don't crash the server, they raise exceptions.

    Errors in node.js that bring down the entire process are a different story.

    Your best bet (which you should do with any technology), is just test it out with your application as soon as possible to see if it fits.

提交回复
热议问题