retold 4.0.2 → 4.0.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.
Files changed (34) hide show
  1. package/.claude/settings.local.json +37 -1
  2. package/README.md +112 -2
  3. package/docs/_sidebar.md +4 -1
  4. package/docs/architecture/architecture.md +2 -2
  5. package/docs/architecture/comprehensions.md +282 -0
  6. package/docs/architecture/fluid-models.md +355 -0
  7. package/docs/architecture/modules.md +3 -4
  8. package/docs/contributing.md +50 -0
  9. package/docs/modules/orator.md +0 -7
  10. package/docs/retold-catalog.json +3944 -878
  11. package/docs/retold-keyword-index.json +174010 -144308
  12. package/docs/testing.md +122 -0
  13. package/modules/Include-Retold-Module-List.sh +1 -1
  14. package/package.json +7 -4
  15. package/source/retold-manager/package.json +23 -0
  16. package/source/retold-manager/retold-manager.js +65 -0
  17. package/source/retold-manager/source/Retold-Manager-App.js +1532 -0
  18. package/source/retold-manager/source/Retold-Manager-ModuleCatalog.js +75 -0
  19. package/source/retold-manager/source/Retold-Manager-ProcessRunner.js +706 -0
  20. package/source/retold-manager/source/views/PictView-TUI-Checkout.js +45 -0
  21. package/source/retold-manager/source/views/PictView-TUI-Header.js +41 -0
  22. package/source/retold-manager/source/views/PictView-TUI-Layout.js +53 -0
  23. package/source/retold-manager/source/views/PictView-TUI-Status.js +45 -0
  24. package/source/retold-manager/source/views/PictView-TUI-StatusBar.js +41 -0
  25. package/source/retold-manager/source/views/PictView-TUI-Update.js +45 -0
  26. package/examples/quickstart/layer1/package-lock.json +0 -344
  27. package/examples/quickstart/layer2/package-lock.json +0 -4468
  28. package/examples/quickstart/layer3/package-lock.json +0 -1936
  29. package/examples/quickstart/layer4/package-lock.json +0 -13206
  30. package/examples/quickstart/layer5/package-lock.json +0 -345
  31. package/examples/todo-list/cli-client/package-lock.json +0 -418
  32. package/examples/todo-list/console-client/package-lock.json +0 -426
  33. package/examples/todo-list/server/package-lock.json +0 -6113
  34. package/examples/todo-list/web-client/package-lock.json +0 -12030
@@ -0,0 +1,75 @@
1
+ /**
2
+ * Retold Manager -- Module Catalog
3
+ *
4
+ * Static definitions of the retold module groups and their modules.
5
+ * Drives the file browser's top-level navigation.
6
+ */
7
+
8
+ const libPath = require('path');
9
+
10
+ module.exports =
11
+ {
12
+ BasePath: libPath.resolve(__dirname, '..', '..', '..', 'modules'),
13
+
14
+ Groups:
15
+ [
16
+ {
17
+ Name: 'fable',
18
+ Label: 'Fable',
19
+ Description: 'Core ecosystem: DI, config, logging, UUID',
20
+ Modules:
21
+ [
22
+ 'fable', 'fable-log', 'fable-log-logger-bunyan', 'fable-operationstep',
23
+ 'fable-serviceproviderbase', 'fable-settings', 'fable-uuid'
24
+ ]
25
+ },
26
+ {
27
+ Name: 'meadow',
28
+ Label: 'Meadow',
29
+ Description: 'Data access: ORM, query DSL, schema, DB connectors',
30
+ Modules:
31
+ [
32
+ 'bibliograph', 'bibliograph-storage-leveldb', 'bibliograph-storage-lmdb',
33
+ 'bibliograph-storage-rocksdb', 'foxhound', 'meadow', 'meadow-connection-mssql',
34
+ 'meadow-connection-mysql', 'meadow-connection-sqlite', 'meadow-endpoints',
35
+ 'meadow-graph-client', 'meadow-integration', 'parime', 'retold-data-service',
36
+ 'retold-harness', 'stricture'
37
+ ]
38
+ },
39
+ {
40
+ Name: 'orator',
41
+ Label: 'Orator',
42
+ Description: 'API server: Restify, static files, HTTP proxy, WebSocket',
43
+ Modules:
44
+ [
45
+ 'orator', 'orator-conversion', 'orator-endpoint', 'orator-http-proxy',
46
+ 'orator-serviceserver-base', 'orator-serviceserver-restify',
47
+ 'orator-static-server', 'tidings'
48
+ ]
49
+ },
50
+ {
51
+ Name: 'pict',
52
+ Label: 'Pict',
53
+ Description: 'MVC: views, templates, forms, TUI, CLI, router',
54
+ Modules:
55
+ [
56
+ 'cryptbrau', 'informary', 'pict', 'pict-application', 'pict-chance',
57
+ 'pict-docuserve', 'pict-nonlinearconfig', 'pict-panel', 'pict-provider',
58
+ 'pict-router', 'pict-section-content', 'pict-section-entitymanagement',
59
+ 'pict-section-flow', 'pict-section-form', 'pict-section-recordset',
60
+ 'pict-section-tuigrid', 'pict-service-commandlineutility',
61
+ 'pict-serviceproviderbase', 'pict-template', 'pict-terminalui', 'pict-view'
62
+ ]
63
+ },
64
+ {
65
+ Name: 'utility',
66
+ Label: 'Utility',
67
+ Description: 'Build tools, manifests, docs, supervision',
68
+ Modules:
69
+ [
70
+ 'cachetrax', 'cumulation', 'indoctrinate', 'manyfest',
71
+ 'pict-cruisecontrol', 'precedent', 'quackage', 'ultravisor'
72
+ ]
73
+ }
74
+ ]
75
+ };