coakka-v2-connector-node 1.3.1 → 1.3.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 +22 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  Node.js connector package for the CoAkka runtime v2.
4
4
 
5
+ ## New To CoAkka
6
+
7
+ CoAkka is a native-backed runtime and logger toolkit for application-owned
8
+ work. It helps an app route work by target name, handle request/reply,
9
+ deadletters, bounded queues, diagnostics, and native-backed logging without
10
+ turning every internal boundary into another hand-written HTTP endpoint.
11
+
12
+ Use these public repositories to orient first:
13
+
14
+ | Repository | Use it for | Link |
15
+ | --- | --- | --- |
16
+ | `coakka-samples` | Runnable examples and code you can inspect first. | https://github.com/phuong-tran/coakka-samples |
17
+ | `coakka-publish` | Released packages, native archives, manifests, checksums, compatibility matrix, and release notes. | https://github.com/phuong-tran/coakka-publish |
18
+
19
+ Run the matching sample:
20
+
21
+ ```sh
22
+ git clone https://github.com/phuong-tran/coakka-samples.git
23
+ cd coakka-samples
24
+ bash run.sh runtime node basic
25
+ ```
26
+
5
27
  Current package shape:
6
28
 
7
29
  - `RuntimeHost.start(...)` as the preferred single-process lifecycle entrypoint
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coakka-v2-connector-node",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Node.js connector package for the CoAkka runtime v2",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "type": "module",