Raspberry Pi Reconnection

I am unable to automatically reconnect to the server after loosing wifi connection. I have tried Blynk.run(). I get the message:

TypeError: undefined is not a function

Code:

var blynk = new Blynk.Blynk(AUTH);
//House keeping
setInterval(function() {
try{
blynk.run();
}
catch(ex){
logger.debug(“House Keeping :” + ex);
}
}, 60000);

Board: Raspberry Pi 2 B+

Thanks for your report.
You don’t need to “run()” with Node.js
Let me check, maybe there is a bug in reconnection…

Thanks for the response. It seems to be an issue with my router. After adding some logging, I can see the connection being reestablished automatically.

So, is the issue resolved?