retold 4.0.7 → 4.0.8
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/.claude/launch.json +18 -0
- package/.claude/settings.local.json +44 -164
- package/CLAUDE.md +6 -6
- package/README.md +8 -8
- package/Retold-Modules-Manifest.json +69 -29
- package/docs/architecture/dependencies/in-ecosystem-dependency-graph.md +34 -34
- package/docs/architecture/modules.md +20 -11
- package/docs/retold-catalog.json +1916 -409
- package/docs/retold-keyword-index.json +195137 -124213
- package/package.json +3 -3
- package/modules/.claude/settings.local.json +0 -52
package/CLAUDE.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# Retold
|
|
2
2
|
|
|
3
|
-
A suite of
|
|
3
|
+
A suite of 60+ JavaScript/Node.js modules for building web applications and APIs. MIT licensed.
|
|
4
4
|
|
|
5
5
|
## Architecture
|
|
6
6
|
|
|
7
7
|
Six module groups, each in `modules/<group>/`:
|
|
8
8
|
|
|
9
9
|
- **Fable** — Core ecosystem: dependency injection (service provider pattern), configuration, logging, UUID generation, expression parser, REST client, template engine
|
|
10
|
-
- **Meadow** — Data access layer: ORM, query DSL (FoxHound), schema definitions (Stricture), DB connectors (MySQL, MSSQL, SQLite), RESTful endpoint generation
|
|
10
|
+
- **Meadow** — Data access layer: ORM, query DSL (FoxHound), schema definitions (Stricture), DB connectors (MySQL, MSSQL, PostgreSQL, SQLite, MongoDB, DGraph, Solr, RocksDB), RESTful endpoint generation
|
|
11
11
|
- **Orator** — API server: Restify wrapper, static file serving, HTTP proxy, WebSocket support (Tidings)
|
|
12
12
|
- **Pict** — MVC tools: views, templates, providers, application lifecycle, form builders, TUI grid, CLI utilities
|
|
13
13
|
- **Utility** — Build tools (Quackage), manifest management (Manyfest), documentation (Indoctrinate), process supervision (Ultravisor)
|
|
@@ -23,10 +23,10 @@ retold/
|
|
|
23
23
|
├── test/ # Root-level tests
|
|
24
24
|
├── modules/
|
|
25
25
|
│ ├── fable/ # 6 modules
|
|
26
|
-
│ ├── meadow/ #
|
|
27
|
-
│ ├── orator/ #
|
|
28
|
-
│ ├── pict/ #
|
|
29
|
-
│ ├── utility/ #
|
|
26
|
+
│ ├── meadow/ # 19 modules
|
|
27
|
+
│ ├── orator/ # 7 modules
|
|
28
|
+
│ ├── pict/ # 22 modules
|
|
29
|
+
│ ├── utility/ # 6 modules
|
|
30
30
|
│ └── apps/ # 2 applications
|
|
31
31
|
```
|
|
32
32
|
|
package/README.md
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
> A story-obsessed application suite.
|
|
4
4
|
|
|
5
|
-
Retold is a collection of
|
|
5
|
+
Retold is a collection of 60+ JavaScript/Node.js modules for building web applications and APIs. The modules span six groups — from core dependency injection up through data access, API serving, full MVC, and complete applications — all designed to compose together through a shared service provider pattern. Plain JavaScript, no TypeScript. MIT licensed.
|
|
6
6
|
|
|
7
7
|
## Module Groups
|
|
8
8
|
|
|
9
9
|
| Group | Purpose |
|
|
10
10
|
|-------|---------|
|
|
11
11
|
| **Fable** | Core ecosystem: dependency injection, configuration, logging, UUID generation, expression parsing, REST client, template engine |
|
|
12
|
-
| **Meadow** | Data access layer: provider-agnostic ORM, query generation (FoxHound), schema definitions (Stricture), database connectors (MySQL, MSSQL, SQLite), auto-generated REST endpoints |
|
|
12
|
+
| **Meadow** | Data access layer: provider-agnostic ORM, query generation (FoxHound), schema definitions (Stricture), database connectors (MySQL, MSSQL, PostgreSQL, SQLite, MongoDB, DGraph, Solr, RocksDB), auto-generated REST endpoints |
|
|
13
13
|
| **Orator** | API server: HTTP server abstraction over Restify, static file serving, reverse proxy, WebSocket reporting |
|
|
14
14
|
| **Pict** | MVC tools: views, templates, providers, application lifecycle — for browser, terminal, or any text-based UI |
|
|
15
15
|
| **Utility** | Build tools (Quackage), manifest management (Manyfest), documentation generation (Indoctrinate), process supervision (Ultravisor) |
|
|
@@ -92,12 +92,12 @@ retold/
|
|
|
92
92
|
├── test/
|
|
93
93
|
├── docs/ # Documentation site (pict-docuserve)
|
|
94
94
|
└── modules/
|
|
95
|
-
├── fable/ # Core ecosystem (
|
|
96
|
-
├── meadow/ # Data access (
|
|
97
|
-
├── orator/ # API server (
|
|
98
|
-
├── pict/ # MVC tools (
|
|
99
|
-
├── utility/ # Build & docs (
|
|
100
|
-
└── apps/ # Applications (
|
|
95
|
+
├── fable/ # Core ecosystem (6 modules)
|
|
96
|
+
├── meadow/ # Data access (19 modules)
|
|
97
|
+
├── orator/ # API server (7 modules)
|
|
98
|
+
├── pict/ # MVC tools (22 modules)
|
|
99
|
+
├── utility/ # Build & docs (6 modules)
|
|
100
|
+
└── apps/ # Applications (2 apps)
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
## Documentation
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"Generated": "2026-
|
|
2
|
+
"Generated": "2026-03-01",
|
|
3
3
|
"Description": "Manifest of all modules in the Retold ecosystem",
|
|
4
4
|
"GitHubOrg": "stevenvelozo",
|
|
5
5
|
"Groups":
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
{
|
|
86
86
|
"Name": "foxhound",
|
|
87
87
|
"Path": "modules/meadow/foxhound",
|
|
88
|
-
"Description": "Fluent query DSL generating dialect-specific
|
|
88
|
+
"Description": "Fluent query DSL generating dialect-specific queries for MySQL, MSSQL, SQLite, ALASQL, and MongoDB",
|
|
89
89
|
"GitHub": "https://github.com/stevenvelozo/foxhound",
|
|
90
90
|
"Documentation": "https://stevenvelozo.github.io/foxhound/",
|
|
91
91
|
"RelatedModules": ["meadow", "stricture", "meadow-connection-mysql", "meadow-connection-mssql", "meadow-connection-sqlite"]
|
|
@@ -96,39 +96,23 @@
|
|
|
96
96
|
"Description": "Key-value record comprehension service for change tracking in data ingestion pipelines",
|
|
97
97
|
"GitHub": "https://github.com/stevenvelozo/bibliograph",
|
|
98
98
|
"Documentation": "https://stevenvelozo.github.io/bibliograph/",
|
|
99
|
-
"RelatedModules": ["fable", "bibliograph-storage-
|
|
99
|
+
"RelatedModules": ["fable", "bibliograph-storage-meadow"]
|
|
100
100
|
},
|
|
101
101
|
{
|
|
102
|
-
"Name": "bibliograph-storage-
|
|
103
|
-
"Path": "modules/meadow/bibliograph-storage-
|
|
104
|
-
"Description": "
|
|
105
|
-
"GitHub": "https://github.com/stevenvelozo/bibliograph-storage-
|
|
106
|
-
"Documentation":
|
|
107
|
-
"RelatedModules": ["bibliograph"]
|
|
108
|
-
},
|
|
109
|
-
{
|
|
110
|
-
"Name": "bibliograph-storage-lmdb",
|
|
111
|
-
"Path": "modules/meadow/bibliograph-storage-lmdb",
|
|
112
|
-
"Description": "LMDB storage provider for Bibliograph record comprehension",
|
|
113
|
-
"GitHub": "https://github.com/stevenvelozo/bibliograph-storage-lmdb",
|
|
114
|
-
"Documentation": false,
|
|
115
|
-
"RelatedModules": ["bibliograph"]
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
"Name": "bibliograph-storage-rocksdb",
|
|
119
|
-
"Path": "modules/meadow/bibliograph-storage-rocksdb",
|
|
120
|
-
"Description": "RocksDB storage provider for Bibliograph record comprehension",
|
|
121
|
-
"GitHub": "https://github.com/stevenvelozo/bibliograph-storage-rocksdb",
|
|
122
|
-
"Documentation": false,
|
|
123
|
-
"RelatedModules": ["bibliograph"]
|
|
102
|
+
"Name": "bibliograph-storage-meadow",
|
|
103
|
+
"Path": "modules/meadow/bibliograph-storage-meadow",
|
|
104
|
+
"Description": "Meadow-backed storage provider for Bibliograph record comprehension with full CRUD persistence",
|
|
105
|
+
"GitHub": "https://github.com/stevenvelozo/bibliograph-storage-meadow",
|
|
106
|
+
"Documentation": "https://stevenvelozo.github.io/bibliograph-storage-meadow/",
|
|
107
|
+
"RelatedModules": ["bibliograph", "meadow"]
|
|
124
108
|
},
|
|
125
109
|
{
|
|
126
110
|
"Name": "meadow",
|
|
127
111
|
"Path": "modules/meadow/meadow",
|
|
128
|
-
"Description": "Provider-agnostic data broker with CRUD operations, audit tracking, and soft deletes",
|
|
112
|
+
"Description": "Provider-agnostic data broker with CRUD operations, audit tracking, and soft deletes across 8 database engines",
|
|
129
113
|
"GitHub": "https://github.com/stevenvelozo/meadow",
|
|
130
114
|
"Documentation": "https://stevenvelozo.github.io/meadow/",
|
|
131
|
-
"RelatedModules": ["fable", "stricture", "foxhound", "meadow-endpoints", "meadow-connection-mysql", "meadow-connection-mssql", "meadow-connection-sqlite"]
|
|
115
|
+
"RelatedModules": ["fable", "stricture", "foxhound", "meadow-endpoints", "meadow-connection-mysql", "meadow-connection-mssql", "meadow-connection-sqlite", "meadow-connection-postgresql", "meadow-connection-mongodb", "meadow-connection-dgraph", "meadow-connection-solr", "meadow-connection-rocksdb"]
|
|
132
116
|
},
|
|
133
117
|
{
|
|
134
118
|
"Name": "parime",
|
|
@@ -170,6 +154,46 @@
|
|
|
170
154
|
"Documentation": "https://stevenvelozo.github.io/meadow-connection-sqlite/",
|
|
171
155
|
"RelatedModules": ["meadow", "foxhound"]
|
|
172
156
|
},
|
|
157
|
+
{
|
|
158
|
+
"Name": "meadow-connection-postgresql",
|
|
159
|
+
"Path": "modules/meadow/meadow-connection-postgresql",
|
|
160
|
+
"Description": "PostgreSQL connection provider for Meadow via pg with connection pooling",
|
|
161
|
+
"GitHub": "https://github.com/stevenvelozo/meadow-connection-postgresql",
|
|
162
|
+
"Documentation": "https://stevenvelozo.github.io/meadow-connection-postgresql/",
|
|
163
|
+
"RelatedModules": ["meadow", "foxhound"]
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"Name": "meadow-connection-mongodb",
|
|
167
|
+
"Path": "modules/meadow/meadow-connection-mongodb",
|
|
168
|
+
"Description": "MongoDB document database connection provider for Meadow",
|
|
169
|
+
"GitHub": "https://github.com/stevenvelozo/meadow-connection-mongodb",
|
|
170
|
+
"Documentation": "https://stevenvelozo.github.io/meadow-connection-mongodb/",
|
|
171
|
+
"RelatedModules": ["meadow", "foxhound"]
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"Name": "meadow-connection-dgraph",
|
|
175
|
+
"Path": "modules/meadow/meadow-connection-dgraph",
|
|
176
|
+
"Description": "DGraph graph database connection provider for Meadow",
|
|
177
|
+
"GitHub": "https://github.com/stevenvelozo/meadow-connection-dgraph",
|
|
178
|
+
"Documentation": "https://stevenvelozo.github.io/meadow-connection-dgraph/",
|
|
179
|
+
"RelatedModules": ["meadow"]
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"Name": "meadow-connection-solr",
|
|
183
|
+
"Path": "modules/meadow/meadow-connection-solr",
|
|
184
|
+
"Description": "Apache Solr search platform connection provider for Meadow",
|
|
185
|
+
"GitHub": "https://github.com/stevenvelozo/meadow-connection-solr",
|
|
186
|
+
"Documentation": "https://stevenvelozo.github.io/meadow-connection-solr/",
|
|
187
|
+
"RelatedModules": ["meadow"]
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"Name": "meadow-connection-rocksdb",
|
|
191
|
+
"Path": "modules/meadow/meadow-connection-rocksdb",
|
|
192
|
+
"Description": "RocksDB embedded key-value store connection provider for Meadow",
|
|
193
|
+
"GitHub": "https://github.com/stevenvelozo/meadow-connection-rocksdb",
|
|
194
|
+
"Documentation": "https://stevenvelozo.github.io/meadow-connection-rocksdb/",
|
|
195
|
+
"RelatedModules": ["meadow"]
|
|
196
|
+
},
|
|
173
197
|
{
|
|
174
198
|
"Name": "meadow-graph-client",
|
|
175
199
|
"Path": "modules/meadow/meadow-graph-client",
|
|
@@ -189,10 +213,18 @@
|
|
|
189
213
|
{
|
|
190
214
|
"Name": "retold-harness",
|
|
191
215
|
"Path": "modules/meadow/retold-harness",
|
|
192
|
-
"Description": "
|
|
216
|
+
"Description": "Composable REST API harness with 3 pluggable schemas, 7 database providers, and a terminal management tool",
|
|
193
217
|
"GitHub": "https://github.com/stevenvelozo/retold-harness",
|
|
194
218
|
"Documentation": "https://stevenvelozo.github.io/retold-harness/",
|
|
195
|
-
"RelatedModules": ["retold-data-service", "orator", "meadow"]
|
|
219
|
+
"RelatedModules": ["retold-data-service", "retold-harness-consistency-proxy", "orator", "meadow", "meadow-connection-mysql", "meadow-connection-mssql", "meadow-connection-sqlite", "meadow-connection-postgresql", "meadow-connection-mongodb", "meadow-connection-dgraph", "meadow-connection-solr"]
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"Name": "retold-harness-consistency-proxy",
|
|
223
|
+
"Path": "modules/meadow/retold-harness-consistency-proxy",
|
|
224
|
+
"Description": "HTTP consistency proxy that fans requests across multiple database providers and compares responses",
|
|
225
|
+
"GitHub": "https://github.com/stevenvelozo/retold-harness-consistency-proxy",
|
|
226
|
+
"Documentation": "https://stevenvelozo.github.io/retold-harness-consistency-proxy/",
|
|
227
|
+
"RelatedModules": ["retold-harness", "retold-data-service"]
|
|
196
228
|
},
|
|
197
229
|
{
|
|
198
230
|
"Name": "meadow-integration",
|
|
@@ -265,6 +297,14 @@
|
|
|
265
297
|
"GitHub": "https://github.com/stevenvelozo/orator-conversion",
|
|
266
298
|
"Documentation": "https://stevenvelozo.github.io/orator-conversion/",
|
|
267
299
|
"RelatedModules": ["orator"]
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"Name": "orator-endpoint",
|
|
303
|
+
"Path": "modules/orator/orator-endpoint",
|
|
304
|
+
"Description": "Base endpoint class for Orator providing route definition and request handling patterns",
|
|
305
|
+
"GitHub": "https://github.com/stevenvelozo/orator-endpoint",
|
|
306
|
+
"Documentation": false,
|
|
307
|
+
"RelatedModules": ["orator", "meadow-endpoints"]
|
|
268
308
|
}
|
|
269
309
|
]
|
|
270
310
|
},
|
|
@@ -20,7 +20,7 @@ Core modules (10+ dependents) are highlighted with filled backgrounds. The numbe
|
|
|
20
20
|
| Production dependency edges | 212 |
|
|
21
21
|
| Development dependency edges | 122 |
|
|
22
22
|
| Total in-ecosystem edges | 334 |
|
|
23
|
-
| Dependency depth (max
|
|
23
|
+
| Dependency depth (max groups) | 9 (groups 0-8) |
|
|
24
24
|
|
|
25
25
|
## Module Groups
|
|
26
26
|
|
|
@@ -51,11 +51,11 @@ These modules form the critical path of the ecosystem. Changes here have the wid
|
|
|
51
51
|
| **pict-application** | pict | 13 | Application lifecycle |
|
|
52
52
|
| **pict-service-commandlineutility** | pict | 11 | CLI framework |
|
|
53
53
|
|
|
54
|
-
## Topological
|
|
54
|
+
## Topological Groups (Dependency Depth)
|
|
55
55
|
|
|
56
|
-
Modules at
|
|
56
|
+
Modules at Group 0 have no ecosystem production dependencies. Each subsequent group depends on modules from lower groups. This ordering defines the safe update sequence: update from the bottom up.
|
|
57
57
|
|
|
58
|
-
###
|
|
58
|
+
### Group 0 — Foundations (5 modules)
|
|
59
59
|
|
|
60
60
|
No ecosystem production dependencies. These are leaf nodes.
|
|
61
61
|
|
|
@@ -67,9 +67,9 @@ No ecosystem production dependencies. These are leaf nodes.
|
|
|
67
67
|
| **fable-serviceproviderbase** | fable |
|
|
68
68
|
| precedent | utility |
|
|
69
69
|
|
|
70
|
-
###
|
|
70
|
+
### Group 1 — Base Services (17 modules)
|
|
71
71
|
|
|
72
|
-
Depend only on
|
|
72
|
+
Depend only on Group 0 modules.
|
|
73
73
|
|
|
74
74
|
| Module | Group | Depends On |
|
|
75
75
|
|---|---|---|
|
|
@@ -91,7 +91,7 @@ Depend only on Layer 0 modules.
|
|
|
91
91
|
| pict-provider | pict | fable-serviceproviderbase |
|
|
92
92
|
| pict-template | pict | fable-serviceproviderbase |
|
|
93
93
|
|
|
94
|
-
###
|
|
94
|
+
### Group 2 — Framework Core (7 modules)
|
|
95
95
|
|
|
96
96
|
| Module | Group | Depends On |
|
|
97
97
|
|---|---|---|
|
|
@@ -103,7 +103,7 @@ Depend only on Layer 0 modules.
|
|
|
103
103
|
| orator-serviceserver-restify | orator | orator-serviceserver-base |
|
|
104
104
|
| pict-router | pict | pict-provider |
|
|
105
105
|
|
|
106
|
-
###
|
|
106
|
+
### Group 3 — Derived Services (6 modules)
|
|
107
107
|
|
|
108
108
|
| Module | Group | Depends On |
|
|
109
109
|
|---|---|---|
|
|
@@ -111,7 +111,7 @@ Depend only on Layer 0 modules.
|
|
|
111
111
|
| **pict-view** | pict | fable, fable-serviceproviderbase |
|
|
112
112
|
| tidings | orator | fable, orator |
|
|
113
113
|
|
|
114
|
-
###
|
|
114
|
+
### Group 4 — Composite Modules (9 modules)
|
|
115
115
|
|
|
116
116
|
| Module | Group | Depends On |
|
|
117
117
|
|---|---|---|
|
|
@@ -125,7 +125,7 @@ Depend only on Layer 0 modules.
|
|
|
125
125
|
| pict-section-objecteditor | pict | pict-view |
|
|
126
126
|
| pict-section-tuigrid | pict | pict-view |
|
|
127
127
|
|
|
128
|
-
###
|
|
128
|
+
### Group 5 — Higher-Level Sections (11 modules)
|
|
129
129
|
|
|
130
130
|
| Module | Group | Depends On |
|
|
131
131
|
|---|---|---|
|
|
@@ -138,7 +138,7 @@ Depend only on Layer 0 modules.
|
|
|
138
138
|
| pict-serviceproviderbase | pict | fable-serviceproviderbase, pict |
|
|
139
139
|
| pict-terminalui | pict | fable, fable-serviceproviderbase, pict, pict-application, pict-view |
|
|
140
140
|
|
|
141
|
-
###
|
|
141
|
+
### Group 6 — Integration Modules (15 modules)
|
|
142
142
|
|
|
143
143
|
| Module | Group | Depends On |
|
|
144
144
|
|---|---|---|
|
|
@@ -154,7 +154,7 @@ Depend only on Layer 0 modules.
|
|
|
154
154
|
| stricture | meadow | pict, pict-application, pict-service-commandlineutility, pict-terminalui, pict-view |
|
|
155
155
|
| ultravisor | utility | orator, orator-serviceserver-restify, pict, pict-service-commandlineutility, pict-serviceproviderbase |
|
|
156
156
|
|
|
157
|
-
###
|
|
157
|
+
### Group 7 — Application Components (4 modules)
|
|
158
158
|
|
|
159
159
|
| Module | Group | Depends On |
|
|
160
160
|
|---|---|---|
|
|
@@ -163,7 +163,7 @@ Depend only on Layer 0 modules.
|
|
|
163
163
|
| retold-content-system | apps | fable, orator, orator-serviceserver-restify, pict, pict-application, pict-docuserve, pict-provider, pict-section-code, pict-section-content, pict-section-filebrowser, pict-section-markdowneditor, pict-service-commandlineutility, pict-view |
|
|
164
164
|
| retold-harness | meadow | meadow-connection-sqlite, retold-data-service |
|
|
165
165
|
|
|
166
|
-
###
|
|
166
|
+
### Group 8 — Top-Level Applications (2 modules)
|
|
167
167
|
|
|
168
168
|
| Module | Group | Depends On |
|
|
169
169
|
|---|---|---|
|
|
@@ -172,46 +172,46 @@ Depend only on Layer 0 modules.
|
|
|
172
172
|
|
|
173
173
|
## Architectural Dependency Flow
|
|
174
174
|
|
|
175
|
-
The general dependency flow follows the Retold architectural
|
|
175
|
+
The general dependency flow follows the Retold architectural groups:
|
|
176
176
|
|
|
177
177
|
```
|
|
178
|
-
|
|
178
|
+
Group 0 fable-serviceproviderbase, precedent, cryptbrau, cumulation
|
|
179
179
|
|
|
|
180
|
-
|
|
180
|
+
Group 1 fable-log, fable-settings, fable-uuid, cachetrax, manyfest
|
|
181
181
|
meadow-connection-*, orator-serviceserver-base, orator-static-server
|
|
182
182
|
pict-application, pict-provider, pict-template
|
|
183
183
|
|
|
|
184
|
-
|
|
184
|
+
Group 2 fable, orator, orator-serviceserver-restify, orator-http-proxy
|
|
185
185
|
pict-router
|
|
186
186
|
|
|
|
187
|
-
|
|
187
|
+
Group 3 foxhound, pict-view, tidings
|
|
188
188
|
|
|
|
189
|
-
|
|
189
|
+
Group 4 meadow, pict, pict-section-* (basic)
|
|
190
190
|
|
|
|
191
|
-
|
|
191
|
+
Group 5 meadow-endpoints, pict-section-form, pict-service-commandlineutility
|
|
192
192
|
pict-terminalui, bibliograph
|
|
193
193
|
|
|
|
194
|
-
|
|
194
|
+
Group 6 retold-data-service, stricture, indoctrinate, pict-docuserve
|
|
195
195
|
pict-section-recordset, ultravisor
|
|
196
196
|
|
|
|
197
|
-
|
|
197
|
+
Group 7 quackage, retold-content-system, retold-harness
|
|
198
198
|
|
|
|
199
|
-
|
|
199
|
+
Group 8 retold, retold-remote
|
|
200
200
|
```
|
|
201
201
|
|
|
202
202
|
## Update Order
|
|
203
203
|
|
|
204
|
-
When performing ecosystem-wide updates, follow the topological
|
|
205
|
-
|
|
206
|
-
1. **
|
|
207
|
-
2. **
|
|
208
|
-
3. **
|
|
209
|
-
4. **
|
|
210
|
-
5. **
|
|
211
|
-
6. **
|
|
212
|
-
7. **
|
|
213
|
-
8. **
|
|
214
|
-
9. **
|
|
204
|
+
When performing ecosystem-wide updates, follow the topological group order (bottom-up):
|
|
205
|
+
|
|
206
|
+
1. **Group 0** first — `fable-serviceproviderbase`, `precedent`
|
|
207
|
+
2. **Group 1** — `fable-log`, `fable-settings`, `fable-uuid`, `cachetrax`, `manyfest`, connection modules, `pict-application`, `pict-provider`, `pict-template`
|
|
208
|
+
3. **Group 2** — `fable`, `orator`, `orator-serviceserver-restify`
|
|
209
|
+
4. **Group 3** — `foxhound`, `pict-view`
|
|
210
|
+
5. **Group 4** — `meadow`, `pict`, basic pict-section modules
|
|
211
|
+
6. **Group 5** — `meadow-endpoints`, `pict-section-form`, `pict-service-commandlineutility`
|
|
212
|
+
7. **Group 6** — `retold-data-service`, `stricture`, `indoctrinate`, `pict-docuserve`
|
|
213
|
+
8. **Group 7** — `quackage`, `retold-content-system`, `retold-harness`
|
|
214
|
+
9. **Group 8** — `retold`, `retold-remote`
|
|
215
215
|
|
|
216
216
|
## Data Files
|
|
217
217
|
|
|
@@ -13,24 +13,31 @@ An exhaustive list of every repository in the Retold suite, organized by group.
|
|
|
13
13
|
| [fable-uuid](/fable/fable-uuid/) | `fable-uuid` | UUID generator supporting RFC 4122 v4 and configurable random strings |
|
|
14
14
|
| [fable-log-logger-bunyan](/fable/fable-log-logger-bunyan/) | `fable-log-logger-bunyan` | Bunyan structured logging provider for Fable-Log |
|
|
15
15
|
|
|
16
|
-
## Meadow — Data Access Layer (
|
|
16
|
+
## Meadow — Data Access Layer (19 modules)
|
|
17
17
|
|
|
18
18
|
| Module | npm | Description |
|
|
19
19
|
|--------|-----|-------------|
|
|
20
20
|
| [stricture](/meadow/stricture/) | `stricture` | MicroDDL schema definition language generating JSON, SQL DDL, and documentation |
|
|
21
|
-
| [foxhound](/meadow/foxhound/) | `foxhound` | Fluent query DSL generating dialect-specific
|
|
21
|
+
| [foxhound](/meadow/foxhound/) | `foxhound` | Fluent query DSL generating dialect-specific queries for MySQL, MSSQL, SQLite, ALASQL, and MongoDB |
|
|
22
22
|
| [bibliograph](/meadow/bibliograph/) | `bibliograph` | Key-value record comprehension for change tracking in data ingestion pipelines |
|
|
23
|
+
| [bibliograph-storage-meadow](/meadow/bibliograph-storage-meadow/) | `bibliograph-storage-meadow` | Meadow-backed storage provider for Bibliograph record comprehension |
|
|
23
24
|
| [meadow](/meadow/meadow/) | `meadow` | Provider-agnostic data broker with CRUD operations, audit tracking, and soft deletes |
|
|
24
25
|
| [parime](/meadow/parime/) | `parime` | Generic data lake behaviors and services |
|
|
25
26
|
| [meadow-endpoints](/meadow/meadow-endpoints/) | `meadow-endpoints` | Automatic RESTful CRUD endpoint generation from Meadow entities with behavior injection |
|
|
26
27
|
| [meadow-connection-mysql](/meadow/meadow-connection-mysql/) | `meadow-connection-mysql` | MySQL/MariaDB pooled connection provider for Meadow |
|
|
27
28
|
| [meadow-connection-mssql](/meadow/meadow-connection-mssql/) | `meadow-connection-mssql` | Microsoft SQL Server connection provider for Meadow |
|
|
28
29
|
| [meadow-connection-sqlite](/meadow/meadow-connection-sqlite/) | `meadow-connection-sqlite` | SQLite connection provider for Meadow via better-sqlite3 |
|
|
30
|
+
| [meadow-connection-postgresql](/meadow/meadow-connection-postgresql/) | `meadow-connection-postgresql` | PostgreSQL connection provider for Meadow via pg |
|
|
31
|
+
| [meadow-connection-mongodb](/meadow/meadow-connection-mongodb/) | `meadow-connection-mongodb` | MongoDB document database connection provider for Meadow |
|
|
32
|
+
| [meadow-connection-dgraph](/meadow/meadow-connection-dgraph/) | `meadow-connection-dgraph` | DGraph graph database connection provider for Meadow |
|
|
33
|
+
| [meadow-connection-solr](/meadow/meadow-connection-solr/) | `meadow-connection-solr` | Apache Solr search platform connection provider for Meadow |
|
|
34
|
+
| [meadow-connection-rocksdb](/meadow/meadow-connection-rocksdb/) | `meadow-connection-rocksdb` | RocksDB embedded key-value store connection provider for Meadow |
|
|
29
35
|
| [retold-data-service](/meadow/retold-data-service/) | `retold-data-service` | All-in-one Fable service assembling schema → entity → endpoints → REST API |
|
|
30
|
-
| [retold-harness](/meadow/retold-harness/) | `retold-harness` |
|
|
36
|
+
| [retold-harness](/meadow/retold-harness/) | `retold-harness` | Composable REST API harness with 3 schemas, 7 providers, and terminal management tool |
|
|
37
|
+
| [retold-harness-consistency-proxy](/meadow/retold-harness-consistency-proxy/) | `retold-harness-consistency-proxy` | HTTP consistency proxy comparing responses across multiple database providers |
|
|
31
38
|
| [meadow-integration](/meadow/meadow-integration/) | `meadow-integration` | Data integration tools for CSV import, schema mapping, and centralized formats |
|
|
32
39
|
|
|
33
|
-
## Orator — API Server (
|
|
40
|
+
## Orator — API Server (7 modules)
|
|
34
41
|
|
|
35
42
|
| Module | npm | Description |
|
|
36
43
|
|--------|-----|-------------|
|
|
@@ -38,10 +45,11 @@ An exhaustive list of every repository in the Retold suite, organized by group.
|
|
|
38
45
|
| [orator-serviceserver-restify](/orator/orator-serviceserver-restify/) | `orator-serviceserver-restify` | Production HTTP server implementation powered by Restify |
|
|
39
46
|
| [orator-static-server](/orator/orator-static-server/) | `orator-static-server` | Static file serving with MIME detection, default files, and subdomain routing |
|
|
40
47
|
| [orator-http-proxy](/orator/orator-http-proxy/) | `orator-http-proxy` | HTTP reverse proxy for forwarding requests to backend services |
|
|
48
|
+
| [orator-endpoint](/orator/orator-endpoint/) | `orator-endpoint` | Base endpoint class for Orator route definition and request handling |
|
|
41
49
|
| [tidings](/orator/tidings/) | `tidings` | Extensible reporting system for generating HTML, PDF, and other format reports |
|
|
42
50
|
| [orator-conversion](/orator/orator-conversion/) | `orator-conversion` | File format conversion endpoints for Orator service servers |
|
|
43
51
|
|
|
44
|
-
## Pict — MVC Tools (
|
|
52
|
+
## Pict — MVC Tools (22 modules)
|
|
45
53
|
|
|
46
54
|
| Module | npm | Description |
|
|
47
55
|
|--------|-----|-------------|
|
|
@@ -53,6 +61,8 @@ An exhaustive list of every repository in the Retold suite, organized by group.
|
|
|
53
61
|
| [pict-panel](/pict/pict-panel/) | `pict-panel` | Hot-loadable control panel component for browser applications |
|
|
54
62
|
| [pict-nonlinearconfig](/pict/pict-nonlinearconfig/) | `pict-nonlinearconfig` | Pict nonlinear configuration manager |
|
|
55
63
|
| [pict-section-flow](/pict/pict-section-flow/) | `pict-section-flow` | Pict section flow diagram |
|
|
64
|
+
| [pict-section-code](/pict/pict-section-code/) | `pict-section-code` | Code editor and syntax highlighter wrapping CodeJar with two-way data binding |
|
|
65
|
+
| [pict-section-formeditor](/pict/pict-section-formeditor/) | `pict-section-formeditor` | Visual form editor for designing pict-section-form configurations |
|
|
56
66
|
| [pict-docuserve](/pict/pict-docuserve/) | `pict-docuserve` | Single-page documentation viewer built on Pict |
|
|
57
67
|
| [cryptbrau](/pict/cryptbrau/) | `cryptbrau` | Simple in-browser symmetric encryption |
|
|
58
68
|
| [informary](/pict/informary/) | `informary` | Dependency-free browser form marshaling with undo/redo and field-level deltas |
|
|
@@ -62,7 +72,6 @@ An exhaustive list of every repository in the Retold suite, organized by group.
|
|
|
62
72
|
| [pict-section-form](/pict/pict-section-form/) | `pict-section-form` | Configuration-driven dynamic forms with 13+ input types and data marshaling |
|
|
63
73
|
| [pict-section-objecteditor](/pict/pict-section-objecteditor/) | `pict-section-objecteditor` | Tree-based JSON object editor section for Pict views |
|
|
64
74
|
| [pict-section-tuigrid](/pict/pict-section-tuigrid/) | `pict-section-tuigrid` | Toast UI Grid integration for tabular data display and editing |
|
|
65
|
-
| [pict-section-markdowneditor](/pict/pict-section-markdowneditor/) | `pict-section-markdowneditor` | Segmented markdown editor built on CodeMirror v6 with rich previews |
|
|
66
75
|
| [pict-router](/pict/pict-router/) | `pict-router` | Hash-based URL routing via Navigo with template string route functions |
|
|
67
76
|
| [pict-serviceproviderbase](/pict/pict-serviceproviderbase/) | `pict-serviceproviderbase` | Base classes for Pict services with pre-initialization support |
|
|
68
77
|
| [pict-terminalui](/pict/pict-terminalui/) | `pict-terminalui` | Blessed-based terminal interface for Pict views |
|
|
@@ -90,12 +99,12 @@ An exhaustive list of every repository in the Retold suite, organized by group.
|
|
|
90
99
|
| Group | Count | Focus |
|
|
91
100
|
|-------|-------|-------|
|
|
92
101
|
| Fable | 6 | Core ecosystem, DI, configuration, logging |
|
|
93
|
-
| Meadow |
|
|
94
|
-
| Orator |
|
|
95
|
-
| Pict |
|
|
102
|
+
| Meadow | 19 | Data access, ORM, query DSL, schema, 8 DB connectors, harness |
|
|
103
|
+
| Orator | 7 | API server, HTTP, static files, proxy, reporting, conversion |
|
|
104
|
+
| Pict | 22 | MVC, views, templates, forms, grids, editors, routing, docs, TUI |
|
|
96
105
|
| Utility | 6 | Build tools, caching, templating, manifests, docs, process supervision |
|
|
97
106
|
| Apps | 2 | Full-stack applications built on Retold |
|
|
98
|
-
| **Total** | **
|
|
107
|
+
| **Total** | **62** | |
|
|
99
108
|
|
|
100
109
|
## GitHub Repositories
|
|
101
110
|
|
|
@@ -107,4 +116,4 @@ All modules are hosted at `github.com/stevenvelozo/<module-name>`:
|
|
|
107
116
|
- [github.com/stevenvelozo/orator](https://github.com/stevenvelozo/orator) — API server
|
|
108
117
|
- [github.com/stevenvelozo/pict](https://github.com/stevenvelozo/pict) — MVC tools
|
|
109
118
|
|
|
110
|
-
Each module follows the same structure: `package.json`, `source/`, `test/` (Mocha TDD), and optionally `docs/` (
|
|
119
|
+
Each module follows the same structure: `package.json`, `source/`, `test/` (Mocha TDD), and optionally `docs/` (pict-docuserve).
|