Mongoose Can't Connect Without Internet

前端 未结 2 630
遇见更好的自我
遇见更好的自我 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.

    0 讨论(0)
  • 2020-12-11 01:52

    Use 127.0.0.1 instead of localhost. By turning off your wifi interface the OS is no longer able to resolve localhost.

    0 讨论(0)
提交回复
热议问题