sbx-client-ws npm i --save sbx-client-ws import Socket from 'sbx-clint-ws'; let Feeder = new Socket({ host: {HOST}, reconnectTimeout: 4000, pingInterval: 20000, pingTimeout: 10000, }); Feeder.on((result) => { // Update ticks if(result.event === 'tick.update') { console.log(result.data) } })