File size: 568 Bytes
c70b233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
   const WebSocket = require('ws');
   const { fetchVmData } = require('./proxmoxService');

   const wss = new WebSocket.Server({ port: 8080 });

   wss.on('connection', function connection(ws) {
     ws.on('message', async function incoming(message) {
       console.log('received: %s', message);
       // Assuming message contains the action to fetch VM data
       if (message === 'fetchVmData') {
         const data = await fetchVmData();
         ws.send(JSON.stringify(data));
       }
     });
   });

   console.log('WebSocket server started on port 8080');