@thi.ng/transducers-async 0.2.2 → 0.2.4
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/CHANGELOG.md +1 -1
- package/README.md +13 -5
- package/package.json +9 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
- [Transducers](#transducers)
|
|
22
22
|
- [Reducers](#reducers)
|
|
23
23
|
- [Status](#status)
|
|
24
|
+
- [Related packages](#related-packages)
|
|
24
25
|
- [Installation](#installation)
|
|
25
26
|
- [Dependencies](#dependencies)
|
|
26
27
|
- [Usage examples](#usage-examples)
|
|
@@ -83,6 +84,12 @@ Async versions of various highly composable transducers, reducers and iterators.
|
|
|
83
84
|
|
|
84
85
|
[Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Btransducers-async%5D+in%3Atitle)
|
|
85
86
|
|
|
87
|
+
## Related packages
|
|
88
|
+
|
|
89
|
+
- [@thi.ng/csp](https://github.com/thi-ng/umbrella/tree/develop/packages/csp) - Primitives & operators for Communicating Sequential Processes based on async/await and async iterables
|
|
90
|
+
- [@thi.ng/fibers](https://github.com/thi-ng/umbrella/tree/develop/packages/fibers) - Process hierarchies & operators for cooperative multitasking
|
|
91
|
+
- [@thi.ng/rstream](https://github.com/thi-ng/umbrella/tree/develop/packages/rstream) - Reactive streams & subscription primitives for constructing dataflow graphs / pipelines
|
|
92
|
+
|
|
86
93
|
## Installation
|
|
87
94
|
|
|
88
95
|
```bash
|
|
@@ -122,13 +129,14 @@ Package sizes (brotli'd, pre-treeshake): ESM: 3.10 KB
|
|
|
122
129
|
|
|
123
130
|
## Usage examples
|
|
124
131
|
|
|
125
|
-
|
|
132
|
+
Several projects in this repo's
|
|
126
133
|
[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
|
|
127
|
-
directory
|
|
134
|
+
directory are using this package:
|
|
128
135
|
|
|
129
|
-
| Description
|
|
130
|
-
|
|
131
|
-
|
|
|
136
|
+
| Screenshot | Description | Live demo | Source |
|
|
137
|
+
|:---------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------|:-------------------------------------------------|:------------------------------------------------------------------------------|
|
|
138
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/csp-bus.png" width="240"/> | CSP channel-based event handling, async transducers & reactive UI components | [Demo](https://demo.thi.ng/umbrella/csp-bus/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/csp-bus) |
|
|
139
|
+
| | Basic & barebones usage of async iterables in thi.ng/rdom | [Demo](https://demo.thi.ng/umbrella/rdom-async/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rdom-async) |
|
|
132
140
|
|
|
133
141
|
## API
|
|
134
142
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/transducers-async",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "Async versions of various highly composable transducers, reducers and iterators",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@thi.ng/checks": "^3.6.3",
|
|
42
42
|
"@thi.ng/compose": "^3.0.3",
|
|
43
43
|
"@thi.ng/errors": "^2.5.6",
|
|
44
|
-
"@thi.ng/transducers": "^9.0.
|
|
44
|
+
"@thi.ng/transducers": "^9.0.4"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@microsoft/api-extractor": "^7.43.0",
|
|
@@ -58,6 +58,7 @@
|
|
|
58
58
|
"infinite",
|
|
59
59
|
"iterator",
|
|
60
60
|
"lazy",
|
|
61
|
+
"multitasking",
|
|
61
62
|
"partition",
|
|
62
63
|
"pipeline",
|
|
63
64
|
"reducer",
|
|
@@ -195,8 +196,13 @@
|
|
|
195
196
|
"thi.ng": {
|
|
196
197
|
"alias": "txa",
|
|
197
198
|
"parent": "@thi.ng/transducers",
|
|
199
|
+
"related": [
|
|
200
|
+
"csp",
|
|
201
|
+
"fibers",
|
|
202
|
+
"rstream"
|
|
203
|
+
],
|
|
198
204
|
"status": "alpha",
|
|
199
205
|
"year": 2018
|
|
200
206
|
},
|
|
201
|
-
"gitHead": "
|
|
207
|
+
"gitHead": "0bec55821066c18eb977a7eabd42c0bb2b096d98\n"
|
|
202
208
|
}
|