coakka-logger-node 1.2.1 → 1.2.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.
package/README.md CHANGED
@@ -3,6 +3,28 @@
3
3
  `logger/node/` is the Node.js host connector lane for the standalone CoAkka
4
4
  native logger core.
5
5
 
6
+ ## New To CoAkka
7
+
8
+ CoAkka is a native-backed runtime and logger toolkit for application-owned
9
+ work. The logger package is the bounded native logger surface: app code emits
10
+ records, the native logger owns queueing and pressure behavior, and callers can
11
+ observe accepted, delivered, and dropped counts.
12
+
13
+ Use these public repositories to orient first:
14
+
15
+ | Repository | Use it for | Link |
16
+ | --- | --- | --- |
17
+ | `coakka-samples` | Runnable examples and code you can inspect first. | https://github.com/phuong-tran/coakka-samples |
18
+ | `coakka-publish` | Released packages, native archives, manifests, checksums, compatibility matrix, and release notes. | https://github.com/phuong-tran/coakka-publish |
19
+
20
+ Run the matching sample:
21
+
22
+ ```sh
23
+ git clone https://github.com/phuong-tran/coakka-samples.git
24
+ cd coakka-samples
25
+ bash run.sh logger node basic
26
+ ```
27
+
6
28
  It mirrors the Python logger lane:
7
29
 
8
30
  - load `libcoakka_logger_core` through `koffi`
@@ -1,4 +1,4 @@
1
- export declare const LOGGER_NODE_VERSION = "1.2.1";
1
+ export declare const LOGGER_NODE_VERSION = "1.2.2";
2
2
  export declare const LOGGER_NATIVE_CORE_VERSION = "1.2.1";
3
3
  export declare const LOGGER_NATIVE_GIT_COMMIT = "f50756ebff0d";
4
4
  export declare const LOGGER_NATIVE_PACKAGE_VERSION = "1.2.1+f50756ebff0d";
package/dist/packaging.js CHANGED
@@ -1,4 +1,4 @@
1
- export const LOGGER_NODE_VERSION = "1.2.1";
1
+ export const LOGGER_NODE_VERSION = "1.2.2";
2
2
  export const LOGGER_NATIVE_CORE_VERSION = "1.2.1";
3
3
  export const LOGGER_NATIVE_GIT_COMMIT = "f50756ebff0d";
4
4
  export const LOGGER_NATIVE_PACKAGE_VERSION = "1.2.1+f50756ebff0d";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coakka-logger-node",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Node.js connector package for the CoAkka native logger core",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "type": "module",