@nicmeriano/spool-server 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/bin.js CHANGED
@@ -59,8 +59,6 @@ function updateAnnotationInState(state, annotationId, updates) {
59
59
  // src/orchestrator/routes/events.ts
60
60
  import { Hono } from "hono";
61
61
  import { streamSSE } from "hono/streaming";
62
- import { execFile } from "child_process";
63
- import { platform } from "os";
64
62
  var sseClients = /* @__PURE__ */ new Map();
65
63
  var clientIdCounter = 0;
66
64
  function broadcast(message) {
@@ -115,11 +113,6 @@ function createEventsRoutes(ctx) {
115
113
  app.post("/app-url", async (c) => {
116
114
  const body = await c.req.json();
117
115
  console.error(`[spool] Received app URL: ${body.url}`);
118
- const host = c.req.header("host") || "localhost:3142";
119
- const shellUrl = `http://${host}`;
120
- console.error(`[spool] Opening ${shellUrl}`);
121
- const cmd = platform() === "darwin" ? "open" : platform() === "win32" ? "start" : "xdg-open";
122
- execFile(cmd, [shellUrl]);
123
116
  let state = ctx.getState();
124
117
  state = { ...state, appUrl: body.url };
125
118
  ctx.setState(state);