@nicmeriano/spool-server 0.0.3 → 0.0.4
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 +10 -1
- package/dist/bin.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +10 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -59,6 +59,8 @@ 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";
|
|
62
64
|
var sseClients = /* @__PURE__ */ new Map();
|
|
63
65
|
var clientIdCounter = 0;
|
|
64
66
|
function broadcast(message) {
|
|
@@ -113,6 +115,13 @@ function createEventsRoutes(ctx) {
|
|
|
113
115
|
app.post("/app-url", async (c) => {
|
|
114
116
|
const body = await c.req.json();
|
|
115
117
|
console.error(`[spool] Received app URL: ${body.url}`);
|
|
118
|
+
if (!ctx.noOpen) {
|
|
119
|
+
const host = c.req.header("host") || "localhost:3142";
|
|
120
|
+
const shellUrl = `http://${host}`;
|
|
121
|
+
console.error(`[spool] Opening ${shellUrl}`);
|
|
122
|
+
const cmd = platform() === "darwin" ? "open" : platform() === "win32" ? "start" : "xdg-open";
|
|
123
|
+
execFile(cmd, [shellUrl]);
|
|
124
|
+
}
|
|
116
125
|
let state = ctx.getState();
|
|
117
126
|
state = { ...state, appUrl: body.url };
|
|
118
127
|
ctx.setState(state);
|
|
@@ -2043,7 +2052,7 @@ async function startServer(options = {}) {
|
|
|
2043
2052
|
}
|
|
2044
2053
|
}
|
|
2045
2054
|
}));
|
|
2046
|
-
app.route("/api", createEventsRoutes(routeCtx));
|
|
2055
|
+
app.route("/api", createEventsRoutes({ ...routeCtx, noOpen: options.noOpen ?? false }));
|
|
2047
2056
|
app.route("/api/annotations", createAnnotationsRoutes(routeCtx));
|
|
2048
2057
|
app.route("/api/changes", createChangesRoutes(routeCtx));
|
|
2049
2058
|
app.route("/api/tasks", createTasksRoutes(routeCtx));
|