@emseepea/create-progress-streaming-server 0.0.21 → 0.0.23

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/README.md CHANGED
@@ -69,6 +69,22 @@ To adapt it for a deployed server, see
69
69
  It does not add saved sessions, replay, subscriptions, or recovery after
70
70
  reconnecting.
71
71
 
72
+ ## Build a production container
73
+
74
+ Run `npm install` first so the project has a lockfile. Then run:
75
+
76
+ ```sh
77
+ npm run container:build
78
+ ```
79
+
80
+ The image is for a production deployment behind a trusted proxy. It starts with
81
+ the fail-closed production profile and needs a runtime-mounted deployment
82
+ configuration file. Keep secrets in your platform's runtime secret store, not in
83
+ the Dockerfile, build arguments, or deployment configuration file.
84
+
85
+ For the production proxy, runtime configuration, and hardening requirements, see
86
+ the [container guide](https://emseepea.github.io/emseepea/examples/#build-a-production-container).
87
+
72
88
  ## Add Feedback
73
89
 
74
90
  Install `@emseepea/feedback` when this server needs a detailed one-way
@@ -0,0 +1,17 @@
1
+ .env
2
+ .env.*
3
+ .git
4
+ .github
5
+ .npmrc
6
+ artifacts
7
+ coverage
8
+ dist
9
+ docs
10
+ eval
11
+ initializer-dist
12
+ node_modules
13
+ release-artifacts
14
+ test
15
+ test-support
16
+ *.log
17
+ *.tsbuildinfo
@@ -0,0 +1,19 @@
1
+ FROM docker.io/library/node:24.21.0-trixie-slim@sha256:db3ae80f5d8df06e04dabdf7b44cbf008d32de168205fa0294444aabbc08c590 AS build
2
+ WORKDIR /app
3
+ COPY . .
4
+ RUN test "$(node --version)" = "v24.21.0" \
5
+ && test -f package-lock.json \
6
+ && npm ci --ignore-scripts \
7
+ && npm run build \
8
+ && npm prune --omit=dev --ignore-scripts
9
+
10
+ FROM gcr.io/distroless/nodejs24-debian13:nonroot@sha256:7781e8b4fccf59240bd539af6738cccf8dad4be303165c3a1fa065c48699b937
11
+ WORKDIR /app
12
+ ENV EMSEEPEA_DEPLOYMENT_MODE=production-behind-proxy
13
+ COPY --from=build --chown=65532:65532 /app/package.json ./package.json
14
+ COPY --from=build --chown=65532:65532 /app/node_modules ./node_modules
15
+ COPY --from=build --chown=65532:65532 /app/dist ./dist
16
+ USER 65532:65532
17
+ EXPOSE 3000
18
+ HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 CMD ["/nodejs/bin/node", "-e", "const port=process.env.PORT||'3000';fetch(`http://127.0.0.1:${port}/healthz`).then((r)=>process.exit(r.ok?0:1),()=>process.exit(1));"]
19
+ CMD ["dist/server.js"]
@@ -50,6 +50,22 @@ To adapt it for a deployed server, see
50
50
  It does not add saved sessions, replay, subscriptions, or recovery after
51
51
  reconnecting.
52
52
 
53
+ ## Build a production container
54
+
55
+ Run `npm install` first so the project has a lockfile. Then run:
56
+
57
+ ```sh
58
+ npm run container:build
59
+ ```
60
+
61
+ The image is for a production deployment behind a trusted proxy. It starts with
62
+ the fail-closed production profile and needs a runtime-mounted deployment
63
+ configuration file. Keep secrets in your platform's runtime secret store, not in
64
+ the Dockerfile, build arguments, or deployment configuration file.
65
+
66
+ For the production proxy, runtime configuration, and hardening requirements, see
67
+ the [container guide](https://emseepea.github.io/emseepea/examples/#build-a-production-container).
68
+
53
69
  ## Add Feedback
54
70
 
55
71
  Install `@emseepea/feedback` when this server needs a detailed one-way
@@ -11,11 +11,12 @@
11
11
  "test:built": "node --test test/*.test.mjs",
12
12
  "test:llm": "npm run build && npm run test:llm:built",
13
13
  "test:llm:built": "emseepea-test eval",
14
- "lint": "oxlint src test eval"
14
+ "lint": "oxlint src test eval",
15
+ "container:build": "docker build --tag emseepea-server:local ."
15
16
  },
16
17
  "devDependencies": {
17
- "@emseepea/feedback": "0.2.4",
18
- "@emseepea/testing": "0.9.7",
18
+ "@emseepea/feedback": "0.2.6",
19
+ "@emseepea/testing": "0.9.9",
19
20
  "@modelcontextprotocol/client": "2.0.0",
20
21
  "@types/node": "24.13.3",
21
22
  "typescript": "6.0.3",
@@ -26,7 +27,7 @@
26
27
  },
27
28
  "private": true,
28
29
  "dependencies": {
29
- "@emseepea/server": "0.9.0",
30
+ "@emseepea/server": "0.10.0",
30
31
  "zod": "4.4.3"
31
32
  }
32
33
  }
@@ -1,7 +1,7 @@
1
- import { serveEmseepea } from "@emseepea/server";
1
+ import { loadDeploymentProfile, serveEmseepea } from "@emseepea/server";
2
2
  import { createProgressStreamingServer } from "./app.js";
3
3
 
4
- const running = await serveEmseepea(await createProgressStreamingServer(), {
4
+ const running = await serveEmseepea(await createProgressStreamingServer({ deployment: loadDeploymentProfile() }), {
5
5
  port: Number.parseInt(process.env.PORT ?? "3000", 10),
6
6
  });
7
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emseepea/create-progress-streaming-server",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "description": "Create an Em See Pea server that streams tool progress.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,10 +18,10 @@
18
18
  "prepack": "npm run build:initializer"
19
19
  },
20
20
  "devDependencies": {
21
- "@emseepea/feedback": "0.2.4",
22
- "@emseepea/server": "0.9.0",
21
+ "@emseepea/feedback": "0.2.6",
22
+ "@emseepea/server": "0.10.0",
23
23
  "zod": "4.4.3",
24
- "@emseepea/testing": "0.9.7",
24
+ "@emseepea/testing": "0.9.9",
25
25
  "@modelcontextprotocol/client": "2.0.0",
26
26
  "@types/node": "24.13.3",
27
27
  "typescript": "6.0.3",