coakka-v2-connector-electron 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.
package/README.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  This package is the Electron main-process intent bridge for 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 electron basic
25
+ ```
26
+
5
27
  The boundary is intentionally strict:
6
28
 
7
29
  - renderer JavaScript sends an intent through `ipcRenderer.invoke`
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export declare const COAKKA_ELECTRON_CONNECTOR_VERSION = "1.3.1";
1
+ export declare const COAKKA_ELECTRON_CONNECTOR_VERSION = "1.3.2";
2
2
  export declare const COAKKA_ELECTRON_INTENT_CHANNEL = "coakka:intent";
3
3
  export interface ElectronIntentPayloadIdentity {
4
4
  messageType: string;
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { DeliveryHint, EndpointFlag, NodeRuntimeClient, PayloadFormat, PayloadIdentity, RuntimeHost, } from "coakka-v2-connector-node";
2
- export const COAKKA_ELECTRON_CONNECTOR_VERSION = "1.3.1";
2
+ export const COAKKA_ELECTRON_CONNECTOR_VERSION = "1.3.2";
3
3
  export const COAKKA_ELECTRON_INTENT_CHANNEL = "coakka:intent";
4
4
  const DEFAULT_ROUTE_PORT = 19481;
5
5
  export class ElectronRuntimeIntentBridge {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "coakka-v2-connector-electron",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Electron main-process intent bridge for the CoAkka runtime v2",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "type": "module",
@@ -30,7 +30,7 @@
30
30
  "smoke:packaged": "bash scripts/smoke-packaged-package.sh"
31
31
  },
32
32
  "dependencies": {
33
- "coakka-v2-connector-node": "1.3.1"
33
+ "coakka-v2-connector-node": "1.3.2"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "^24.0.0",