@streamotter/workbench 0.1.0-rc.1 → 0.1.0-rc.2

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.
Files changed (2) hide show
  1. package/README.md +13 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -2,8 +2,20 @@
2
2
 
3
3
  The static assets of the StreamOtter local workbench. You don't use this package directly: [`@streamotter/cli`](https://www.npmjs.com/package/@streamotter/cli) depends on it, and `streamotter dev` serves it from the loopback management origin (default `http://127.0.0.1:7401/`) behind a per-run token and a restrictive Content Security Policy. In the workbench you can check source connections, edit and validate candidate configuration, preview a live subscription as a development principal, inspect payload-free delivery traces, and export the canonical `streamotter.json`. `streamotter start` (production) never serves it. See the [CLI guide](https://www.npmjs.com/package/@streamotter/cli) for the walkthrough.
4
4
 
5
- > **Release candidate.** `0.1.0-rc.1` is published under the `next` tag.
5
+ > **Release candidate** of StreamOtter `0.1.0`.
6
6
 
7
7
  `dist/THIRD_PARTY_LICENSES.txt` lists the MIT-licensed Socket.IO client packages bundled into `dist/app.js`.
8
8
 
9
+ ## StreamOtter packages
10
+
11
+ | Package | |
12
+ | --- | --- |
13
+ | [`@streamotter/cli`](https://www.npmjs.com/package/@streamotter/cli) | Scaffold, validate, generate types, develop with the workbench, and run the production gateway |
14
+ | [`@streamotter/client`](https://www.npmjs.com/package/@streamotter/client) | The browser SDK: subscribe, render `live` and `stale`, and clean up |
15
+ | [`@streamotter/gateway`](https://www.npmjs.com/package/@streamotter/gateway) | Handler types, and running the gateway from your own Node.js code |
16
+ | [`@streamotter/contracts`](https://www.npmjs.com/package/@streamotter/contracts) | Shared types and configuration validation, for tooling authors |
17
+ | [`@streamotter/workbench`](https://www.npmjs.com/package/@streamotter/workbench) | **This package.** The local workbench's assets, installed by the CLI |
18
+
19
+ All five are released together with the same version ([changelog](https://github.com/jfricano/StreamOtter/blob/main/CHANGELOG.md)).
20
+
9
21
  [Repository](https://github.com/jfricano/StreamOtter) · [Issues](https://github.com/jfricano/StreamOtter/issues) · MIT License © 2026 Orca Solutions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@streamotter/workbench",
3
- "version": "0.1.0-rc.1",
3
+ "version": "0.1.0-rc.2",
4
4
  "description": "StreamOtter local workbench (static assets), served by `streamotter dev` from the loopback management origin.",
5
5
  "keywords": [
6
6
  "streamotter",
@@ -29,8 +29,8 @@
29
29
  },
30
30
  "devDependencies": {
31
31
  "esbuild": "0.28.2",
32
- "@streamotter/client": "0.1.0-rc.1",
33
- "@streamotter/contracts": "0.1.0-rc.1"
32
+ "@streamotter/client": "0.1.0-rc.2",
33
+ "@streamotter/contracts": "0.1.0-rc.2"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "node build.mjs"