@emseepea/create-html-ui-server 0.0.22 → 0.0.25

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
@@ -72,6 +72,22 @@ Open
72
72
 
73
73
  The page previews a sample pea planting plan only. It does not send or store a report.
74
74
 
75
+ ## Build a production container
76
+
77
+ Run `npm install` first so the project has a lockfile. Then run:
78
+
79
+ ```sh
80
+ npm run container:build
81
+ ```
82
+
83
+ The image is for a production deployment behind a trusted proxy. It starts with
84
+ the fail-closed production profile and needs a runtime-mounted deployment
85
+ configuration file. Keep secrets in your platform's runtime secret store, not in
86
+ the Dockerfile, build arguments, or deployment configuration file.
87
+
88
+ For the production proxy, runtime configuration, and hardening requirements, see
89
+ the [container guide](https://emseepea.github.io/emseepea/examples/#build-a-production-container).
90
+
75
91
  ## Add Feedback
76
92
 
77
93
  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"]
@@ -54,6 +54,22 @@ Open
54
54
 
55
55
  The page previews a sample pea planting plan only. It does not send or store a report.
56
56
 
57
+ ## Build a production container
58
+
59
+ Run `npm install` first so the project has a lockfile. Then run:
60
+
61
+ ```sh
62
+ npm run container:build
63
+ ```
64
+
65
+ The image is for a production deployment behind a trusted proxy. It starts with
66
+ the fail-closed production profile and needs a runtime-mounted deployment
67
+ configuration file. Keep secrets in your platform's runtime secret store, not in
68
+ the Dockerfile, build arguments, or deployment configuration file.
69
+
70
+ For the production proxy, runtime configuration, and hardening requirements, see
71
+ the [container guide](https://emseepea.github.io/emseepea/examples/#build-a-production-container).
72
+
57
73
  ## Add Feedback
58
74
 
59
75
  Install `@emseepea/feedback` when this server needs a detailed one-way
@@ -11,13 +11,14 @@
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 test-support"
14
+ "lint": "oxlint src test eval test-support",
15
+ "container:build": "docker build --tag emseepea-server:local ."
15
16
  },
16
17
  "devDependencies": {
17
- "@emseepea/feedback": "0.2.4",
18
+ "@emseepea/feedback": "0.2.7",
18
19
  "playwright": "1.62.1",
19
20
  "axe-core": "4.13.0",
20
- "@emseepea/testing": "0.9.7",
21
+ "@emseepea/testing": "0.9.11",
21
22
  "@types/node": "24.13.3",
22
23
  "typescript": "6.0.3",
23
24
  "oxlint": "1.80.0"
@@ -27,7 +28,7 @@
27
28
  },
28
29
  "private": true,
29
30
  "dependencies": {
30
- "@emseepea/server": "0.9.0",
31
+ "@emseepea/server": "0.10.1",
31
32
  "@emseepea/tailwind": "0.0.2"
32
33
  }
33
34
  }
@@ -1,7 +1,7 @@
1
- import { serveEmseepea } from "@emseepea/server";
1
+ import { loadDeploymentProfile, serveEmseepea } from "@emseepea/server";
2
2
  import { createHtmlUiServer } from "./app.js";
3
3
 
4
- const running = await serveEmseepea(await createHtmlUiServer(), {
4
+ const running = await serveEmseepea(await createHtmlUiServer({ deployment: loadDeploymentProfile() }), {
5
5
  port: Number.parseInt(process.env.PORT ?? "3000", 10),
6
6
  });
7
7
  console.log(`Em See Pea native UI example listening at ${running.url}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@emseepea/create-html-ui-server",
3
- "version": "0.0.22",
3
+ "version": "0.0.25",
4
4
  "description": "Create an Em See Pea server with an accessible HTML form.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,13 +18,13 @@
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.7",
22
+ "@emseepea/server": "0.10.1",
23
23
  "@emseepea/tailwind": "0.0.2",
24
24
  "@emseepea/example-ui-shared": "0.0.0",
25
25
  "playwright": "1.62.1",
26
26
  "axe-core": "4.13.0",
27
- "@emseepea/testing": "0.9.7",
27
+ "@emseepea/testing": "0.9.11",
28
28
  "@types/node": "24.13.3",
29
29
  "typescript": "6.0.3",
30
30
  "oxlint": "1.80.0"