@nanobpm/nano-ide-app-embedded-nano 1.2.0 → 1.2.1

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 +34 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,34 @@
1
+ # @nanobpm/nano-ide-app-embedded-nano
2
+
3
+ An **Embedded μ-nano** app pack for the [Nano RAD IDE](https://github.com/Magikcraft/nano-bpm).
4
+
5
+ It scaffolds a **self-contained Deno binary with the Nano BPMN engine running
6
+ in-process** (ADR 0005) — no gateway, no broker, no network. The engine *is*
7
+ your app: deploy one binary and it runs the process itself.
8
+
9
+ ## What it contributes
10
+
11
+ - **Starter template (`embedded-starter`):** a single Deno binary that embeds
12
+ the Nano engine (via the published `@nanobpm/engine-wasm`), deploys a BPMN
13
+ model, and drives it entirely in-process. Nothing to connect to.
14
+
15
+ ## Why embedded
16
+
17
+ The regular templates talk to a **gateway**; this one removes it. That is ideal
18
+ for edge / offline / single-tenant deployments where a full gateway is overkill
19
+ — the whole workflow runtime ships as one executable.
20
+
21
+ ## Requirements
22
+
23
+ - The **Deno** runtime (Nano's built-in TypeScript runtime) to build and run the
24
+ binary.
25
+
26
+ ## Install
27
+
28
+ Install it from the console's **Extensions** marketplace, or add it to a
29
+ project's pack set. The console reads `nano-ide.ext.json` and offers the
30
+ **Embedded engine** template.
31
+
32
+ ## Licence
33
+
34
+ Apache-2.0.
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@nanobpm/nano-ide-app-embedded-nano",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Embedded μ-nano app pack for the Nano RAD IDE: compile a self-contained Deno binary with the Nano BPMN engine running in-process (ADR 0005), no gateway required.",
5
5
  "license": "Apache-2.0",
6
6
  "keywords": ["nano-ide-ext", "nano-ide-app", "nanobpm", "embedded"],
7
7
  "publishConfig": { "access": "public" },
8
8
  "repository": { "type": "git", "url": "https://github.com/jwulf/nano-ide.git", "directory": "packages/app-embedded-nano" },
9
- "files": ["nano-ide.ext.json", "templates"]
9
+ "files": ["nano-ide.ext.json", "templates", "README.md"]
10
10
  }