From 785cb41374bd9ac5f83a2f041c9e1d7ad3dfbda2 Mon Sep 17 00:00:00 2001 From: hola-there Date: Tue, 25 Sep 2018 11:49:04 -0400 Subject: [PATCH] Update client-ssl-local.js According to this: https://community.blynk.cc/t/js-library-keeps-connecting-and-disconnecting/23037/7 Also port 8080 worked for me --- examples/nodejs/client-ssl-local.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/nodejs/client-ssl-local.js b/examples/nodejs/client-ssl-local.js index 201c75f..1d40136 100755 --- a/examples/nodejs/client-ssl-local.js +++ b/examples/nodejs/client-ssl-local.js @@ -5,7 +5,7 @@ var Blynk = require('blynk-library'); var AUTH = 'YOUR_AUTH_TOKEN'; var blynk = new Blynk.Blynk(AUTH, - options= { addr:"127.0.0.1", port:8441 } + options= { addr:"127.0.0.1", port:8080 } ); var v1 = new blynk.VirtualPin(1);