Hi there, sometimes I got : throw new ERR_SOCKET_DGRAM_NOT_RUNNING(); My fix was to change to : socket.on("disconnect", function () { if (oscServer) { oscServer.kill(); oscServer = null; }
Hi there,
sometimes I got :
throw new ERR_SOCKET_DGRAM_NOT_RUNNING();
My fix was to change to :
socket.on("disconnect", function () {
if (oscServer) {
oscServer.kill();
oscServer = null;
}