summaryrefslogtreecommitdiff
path: root/src/api/stream/server.ts
blob: 0db6643d40b64cac8fe1c597397e3ac2997087e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import * as websocket from 'websocket';
import Xev from 'xev';

const ev = new Xev();

export default function homeStream(request: websocket.request, connection: websocket.connection): void {
	const onStats = stats => {
		connection.send(JSON.stringify({
			type: 'stats',
			body: stats
		}));
	};

	ev.addListener('stats', onStats);

	connection.on('close', () => {
		ev.removeListener('stats', onStats);
	});
}