You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bit4sat/web/src/Websocket.js

20 lines
345 B
JavaScript

import { apiPort } from './api.js';
let singleton = false
export class WS {
constructor(){
if (singleton) {
return singleton;
}
const endpoint = `ws://localhost:2015/ws/`;
console.log(`endpoint is ${endpoint}`);
this.conn = new WebSocket(endpoint);
singleton = this;
}
}