@nanobpm/nano-ide-app-embedded-nano 1.2.0 → 1.3.0
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 +34 -0
- package/package.json +20 -5
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://nanobpm.io).
|
|
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,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nanobpm/nano-ide-app-embedded-nano",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
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
|
-
"keywords": [
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
"keywords": [
|
|
7
|
+
"nano-ide-ext",
|
|
8
|
+
"nano-ide-app",
|
|
9
|
+
"nanobpm",
|
|
10
|
+
"embedded"
|
|
11
|
+
],
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/nanobpm/nano-ide.git",
|
|
18
|
+
"directory": "packages/app-embedded-nano"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"nano-ide.ext.json",
|
|
22
|
+
"templates",
|
|
23
|
+
"README.md"
|
|
24
|
+
]
|
|
10
25
|
}
|