Mongoose Can't Connect Without Internet

前端 未结 2 635
遇见更好的自我
遇见更好的自我 2020-12-11 01:28

I have my MongoDB server running on localhost:27017, and while I can usually run my Node.js app fine, when I disconnect from the internet Mongoose throws the er

2条回答
  •  长情又很酷
    2020-12-11 01:47

    Consider node-offline-localhost.

    Add the following before the breaking code:

    require('node-offline-localhost').always();
    

    And it just works (hopefully), at least until RFC 3493 gets fixed.

    Full disclosure: I authored this package to streamline https in my dev environment when offline.

提交回复
热议问题