An easy solution to access Streamlabs OBS (SLOBS) websocket connections.
In Streamlabs OBS, go to Settings->Remote Control and click on the QR-Code and then on show details
const SlobsJS = require('slobs.js');
const slobs = new SlobsJS('http://127.0.0.1:59650/api' , 'token');
console.log( slobs.getStreamingStatus() ); //Will return 'live' or 'offline' if slobs is streaming or not.
