class MyClass {
constructor(url) {
this.socket = new WebSocket(url);
this.socket.onerror = socket_onerror;
}
socket_onerror(event) {
console.log("error::" + JSON.stringify(event));
}
};
var myClass = new MyClass("ws://127.0.0.1:3333");