Spaces:
Sleeping
Sleeping
File size: 909 Bytes
e732311 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
import http from "node:http";
import { WebSocketServer } from "ws";
import { spawn } from "node-pty";
import { createServer } from "./server";
const port = process.env.PORT || 5001;
const app = createServer();
const server = http.createServer(app);
const wss = new WebSocketServer({ server });
wss.on("connection", (ws) => {
const ptyProcess = spawn("bash", [], {
name: "xterm-color",
env: process.env,
});
ws.on("message", (message) => {
console.log(`received: ${message}`);
const data = JSON.parse(message.toString());
if (data.type === "command") {
ptyProcess.write(data.data);
}
});
ws.on("close", () => {
console.log("closed ws");
});
ptyProcess.onData((data) => {
const message = JSON.stringify({
type: "data",
data,
});
ws.send(message);
});
});
server.listen(port, () => {
console.log(`api running on ${port}`);
});
|