hakuban 0.5.5 → 0.6.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 +7 -2
- package/hakuban-with-wasm.js +2593 -0
- package/hakuban-with-wasm.js.map +1 -0
- package/hakuban-with-wasm.min.js +2 -0
- package/hakuban-with-wasm.min.js.map +1 -0
- package/hakuban.js +2584 -0
- package/hakuban.js.map +1 -0
- package/hakuban.min.js +2 -0
- package/hakuban.min.js.map +1 -0
- package/hakuban.wasm +0 -0
- package/package.json +29 -8
- package/dist/es/hakuban.js +0 -1909
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Some of Hakuban's features and properties:
|
|
|
24
24
|
- Allows use of custom de/serializers, uses serde by default.
|
|
25
25
|
- Can be compiled to .so, has ruby binding (ffi), and wasm binding in the near future.
|
|
26
26
|
|
|
27
|
-
It's **not** meant for and **won't** do: message passing, remote function calls, synchronous "calls" (request-response), allow explicit target addressing, be a work-queue, allow "consuming" objects, work directly with any database.
|
|
27
|
+
It's **not** meant for and **won't** do: message passing, remote function calls, synchronous "calls" (request-response), allow explicit target addressing, be a work-queue, allow "consuming" objects, work directly with any database, modify objects in transit.
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
## Usage example
|
|
@@ -53,6 +53,10 @@ For more examples check out the `examples` directory, and [documentation](https:
|
|
|
53
53
|
|
|
54
54
|
Hakuban ruby ffi binding.
|
|
55
55
|
|
|
56
|
+
### [Wasm/JS for browser](https://www.npmjs.com/package/hakuban)
|
|
57
|
+
|
|
58
|
+
Hakuban compiled to wasm, with JS interface to use in browser.
|
|
59
|
+
|
|
56
60
|
### Hakuban webapp router
|
|
57
61
|
`(TODO: add url)`
|
|
58
62
|
|
|
@@ -75,12 +79,13 @@ Commercial (aka. shameless plug) robotic ui-testing platform.
|
|
|
75
79
|
|
|
76
80
|
## Roadmap
|
|
77
81
|
Not ordered by priority:
|
|
78
|
-
- wasm binding
|
|
79
82
|
- preloading/side loading
|
|
80
83
|
- avoid object flicker on short disconnections
|
|
81
84
|
- message filter for auth* and auditing
|
|
85
|
+
- immunity from broken/malicious diffs
|
|
82
86
|
- make event pipeline elements destructible
|
|
83
87
|
- expose introspection/statistics objects
|
|
88
|
+
- simplify assignment API
|
|
84
89
|
|
|
85
90
|
|
|
86
91
|
## License
|