hakuban 0.7.1 → 0.7.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 +8 -8
- package/hakuban-with-wasm.js +37 -37
- package/hakuban-with-wasm.js.map +1 -1
- package/hakuban-with-wasm.min.js +1 -1
- package/hakuban-with-wasm.min.js.map +1 -1
- package/hakuban.js +36 -36
- package/hakuban.js.map +1 -1
- package/hakuban.min.js +1 -1
- package/hakuban.min.js.map +1 -1
- package/hakuban.wasm +0 -0
- package/package.json +1 -1
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/js binding.
|
|
26
26
|
|
|
27
|
-
It's **not** meant for and
|
|
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
|
|
@@ -67,7 +67,7 @@ Webapp router, with following properties:
|
|
|
67
67
|
* Every link is open-in-new-tab compatible, and copy-link compatible
|
|
68
68
|
* Short urls, optionally exposing selected state variables
|
|
69
69
|
* All urls (== application states) are shareable
|
|
70
|
-
* State can be bigger than what fits in a url (as long as it's built
|
|
70
|
+
* State can be bigger than what fits in a url (as long as it's built progressively)
|
|
71
71
|
* Works while offline/disconnected (no url shortening then)
|
|
72
72
|
|
|
73
73
|
### Schedy
|
|
@@ -75,19 +75,19 @@ Webapp router, with following properties:
|
|
|
75
75
|
|
|
76
76
|
Task queue/scheduler. Aware of resource preparation time. Resources owned and resources required by task are graph-structured.
|
|
77
77
|
|
|
78
|
-
### MechaTouch
|
|
79
|
-
`(TODO: add url)`
|
|
78
|
+
### [MechaTouch](https://mikoton.com/pages/mechatouch.html)
|
|
80
79
|
|
|
81
|
-
Commercial (aka. shameless plug) robotic ui-testing platform.
|
|
80
|
+
Commercial (aka. shameless plug) robotic ui-testing platform, with visual test-scenario programming, fully remote SUT control, zero-overhead performance measurements, etc.
|
|
82
81
|
|
|
83
82
|
## Roadmap
|
|
84
83
|
Not ordered by priority:
|
|
85
84
|
- preloading/side loading
|
|
86
85
|
- avoid object flicker on short disconnections
|
|
87
86
|
- message filter for auth* and auditing
|
|
88
|
-
- immunity
|
|
87
|
+
- immunity to broken/malicious diffs
|
|
89
88
|
- expose introspection/statistics objects
|
|
90
89
|
- more efficient and simpler network protocol
|
|
90
|
+
- hold un-serialized objects, and serialize only when/if needed
|
|
91
91
|
|
|
92
92
|
## License
|
|
93
93
|
|
|
@@ -105,11 +105,11 @@ If you're looking for more intimate contact, talk to `yunta` - on matrix [@yunta
|
|
|
105
105
|
|
|
106
106
|
The list does not contain change- or message- focused projects, nor projects with integrated database. Hopefully. It's surprisingly difficult to figure out what some of those actually do:
|
|
107
107
|
* [Redis](https://redis.io)
|
|
108
|
-
* [
|
|
108
|
+
* [driftdb](https://driftdb.com/)
|
|
109
109
|
* [Fluvio](https://www.fluvio.io/)
|
|
110
110
|
* [deepstream](https://deepstream.io/)
|
|
111
|
-
* [nhost](https://nhost.io/)
|
|
112
111
|
* [zenoh](https://zenoh.io/)
|
|
112
|
+
* [Ably](https://ably.com/)
|
|
113
113
|
* just diffing, if you don't need the network and lifetime control parts:
|
|
114
114
|
* [serde-diff](https://github.com/amethyst/serde-diff)
|
|
115
115
|
* [dipa](https://github.com/chinedufn/dipa)
|