@thi.ng/system 3.0.0 → 3.0.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/CHANGELOG.md +1 -1
- package/README.md +21 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
<!-- This file is generated - DO NOT EDIT! -->
|
|
2
2
|
<!-- Please see: https://github.com/thi-ng/umbrella/blob/develop/CONTRIBUTING.md#changes-to-readme-files -->
|
|
3
|
+
> [!IMPORTANT]
|
|
4
|
+
> ‼️ Announcing the thi.ng user survey 2024 📋
|
|
5
|
+
>
|
|
6
|
+
> [Please participate in the survey here!](https://forms.gle/XacbSDEmQMPZg8197)\
|
|
7
|
+
> (open until end of February)
|
|
8
|
+
>
|
|
9
|
+
> **To achieve a better sample size, I'd highly appreciate if you could
|
|
10
|
+
> circulate the link to this survey in your own networks.**
|
|
11
|
+
>
|
|
12
|
+
> [Discussion](https://github.com/thi-ng/umbrella/discussions/447)
|
|
3
13
|
|
|
4
14
|
# 
|
|
5
15
|
|
|
@@ -19,6 +29,7 @@
|
|
|
19
29
|
- [Status](#status)
|
|
20
30
|
- [Installation](#installation)
|
|
21
31
|
- [Dependencies](#dependencies)
|
|
32
|
+
- [Usage examples](#usage-examples)
|
|
22
33
|
- [API](#api)
|
|
23
34
|
- [Example system](#example-system)
|
|
24
35
|
- [System visualization](#system-visualization)
|
|
@@ -70,6 +81,16 @@ Package sizes (brotli'd, pre-treeshake): ESM: 570 bytes
|
|
|
70
81
|
- [@thi.ng/dgraph](https://github.com/thi-ng/umbrella/tree/develop/packages/dgraph)
|
|
71
82
|
- [@thi.ng/logger](https://github.com/thi-ng/umbrella/tree/develop/packages/logger)
|
|
72
83
|
|
|
84
|
+
## Usage examples
|
|
85
|
+
|
|
86
|
+
One project in this repo's
|
|
87
|
+
[/examples](https://github.com/thi-ng/umbrella/tree/develop/examples)
|
|
88
|
+
directory is using this package:
|
|
89
|
+
|
|
90
|
+
| Screenshot | Description | Live demo | Source |
|
|
91
|
+
|:--------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------|:---------------------------------------------------------|:--------------------------------------------------------------------------------------|
|
|
92
|
+
| <img src="https://raw.githubusercontent.com/thi-ng/umbrella/develop/assets/examples/rstream-system-bus.png" width="240"/> | Declarative component-based system with central rstream-based pubsub event bus | [Demo](https://demo.thi.ng/umbrella/rstream-system-bus/) | [Source](https://github.com/thi-ng/umbrella/tree/develop/examples/rstream-system-bus) |
|
|
93
|
+
|
|
73
94
|
## API
|
|
74
95
|
|
|
75
96
|
[Generated API docs](https://docs.thi.ng/umbrella/system/)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/system",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "Minimal and explicit dependency-injection & lifecycle container for stateful app components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
"test": "bun test"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@thi.ng/api": "^8.9.
|
|
42
|
-
"@thi.ng/dgraph": "^2.1.
|
|
43
|
-
"@thi.ng/logger": "^2.1.
|
|
41
|
+
"@thi.ng/api": "^8.9.23",
|
|
42
|
+
"@thi.ng/dgraph": "^2.1.95",
|
|
43
|
+
"@thi.ng/logger": "^2.1.10"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@microsoft/api-extractor": "^7.
|
|
47
|
-
"esbuild": "^0.
|
|
46
|
+
"@microsoft/api-extractor": "^7.40.1",
|
|
47
|
+
"esbuild": "^0.20.0",
|
|
48
48
|
"rimraf": "^5.0.5",
|
|
49
|
-
"typedoc": "^0.25.
|
|
49
|
+
"typedoc": "^0.25.7",
|
|
50
50
|
"typescript": "^5.3.3"
|
|
51
51
|
},
|
|
52
52
|
"keywords": [
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"thi.ng": {
|
|
85
85
|
"year": 2020
|
|
86
86
|
},
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "e5e7d5c6ed2eadee7a91d59cbd0c86ce880ab1c5\n"
|
|
88
88
|
}
|