@nicmeriano/spool-server 0.0.4 → 0.0.5
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 +6 -8
- package/dist/bin.js.map +1 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.js +6 -8
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/bin.js
CHANGED
|
@@ -115,13 +115,11 @@ function createEventsRoutes(ctx) {
|
|
|
115
115
|
app.post("/app-url", async (c) => {
|
|
116
116
|
const body = await c.req.json();
|
|
117
117
|
console.error(`[spool] Received app URL: ${body.url}`);
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
execFile(cmd, [shellUrl]);
|
|
124
|
-
}
|
|
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]);
|
|
125
123
|
let state = ctx.getState();
|
|
126
124
|
state = { ...state, appUrl: body.url };
|
|
127
125
|
ctx.setState(state);
|
|
@@ -2052,7 +2050,7 @@ async function startServer(options = {}) {
|
|
|
2052
2050
|
}
|
|
2053
2051
|
}
|
|
2054
2052
|
}));
|
|
2055
|
-
app.route("/api", createEventsRoutes(
|
|
2053
|
+
app.route("/api", createEventsRoutes(routeCtx));
|
|
2056
2054
|
app.route("/api/annotations", createAnnotationsRoutes(routeCtx));
|
|
2057
2055
|
app.route("/api/changes", createChangesRoutes(routeCtx));
|
|
2058
2056
|
app.route("/api/tasks", createTasksRoutes(routeCtx));
|