const WebSocket = require('ws'); const { exec } = require('child_process'); // Create a WebSocket server listening on port 7860 const wss = new WebSocket.Server({ port: 7860 }); // Event listener for new connections wss.on('connection', (ws) => { console.log('New client connected'); // Send a message to the client when they connect ws.send('Welcome to the WebSocket server!'); // Event listener for messages from the client ws.on('message', (message) => { console.log(`Received message: ${message}`); // Execute the command received from the client exec(message, (error, stdout, stderr) => { if (error) { ws.send(`Error: ${error.message}`); return; } if (stderr) { ws.send(`stderr: ${stderr}`); return; } ws.send(`stdout: ${stdout}`); }); }); // Event listener for client disconnects ws.on('close', () => { console.log('Client disconnected'); }); }); console.log('WebSocket server is running on ws://localhost:7860');