coakka-v2-connector-node 1.3.1 → 1.3.3
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 +22 -0
- package/dist/packaging.d.ts +1 -1
- package/dist/packaging.js +1 -1
- 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/dist/packaging.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const COAKKA_V2_NODE_VERSION = "1.3.
|
|
1
|
+
export declare const COAKKA_V2_NODE_VERSION = "1.3.3";
|
|
2
2
|
export declare const COAKKA_V2_NATIVE_CORE_VERSION = "1.3.1";
|
|
3
3
|
export declare const COAKKA_V2_NATIVE_GIT_COMMIT = "bda2ef5";
|
|
4
4
|
export declare const COAKKA_V2_NATIVE_PACKAGE_VERSION = "1.3.1+bda2ef5";
|
package/dist/packaging.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export const COAKKA_V2_NODE_VERSION = "1.3.
|
|
1
|
+
export const COAKKA_V2_NODE_VERSION = "1.3.3";
|
|
2
2
|
export const COAKKA_V2_NATIVE_CORE_VERSION = "1.3.1";
|
|
3
3
|
export const COAKKA_V2_NATIVE_GIT_COMMIT = "bda2ef5";
|
|
4
4
|
export const COAKKA_V2_NATIVE_PACKAGE_VERSION = "1.3.1+bda2ef5";
|