retold 4.0.3 → 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 (32) hide show
  1. package/.claude/settings.local.json +26 -1
  2. package/README.md +20 -0
  3. package/docs/_sidebar.md +2 -1
  4. package/docs/architecture/architecture.md +2 -2
  5. package/docs/architecture/modules.md +3 -4
  6. package/docs/contributing.md +50 -0
  7. package/docs/modules/orator.md +0 -7
  8. package/docs/retold-catalog.json +110 -26
  9. package/docs/retold-keyword-index.json +15118 -15139
  10. package/docs/testing.md +122 -0
  11. package/modules/Include-Retold-Module-List.sh +1 -1
  12. package/package.json +7 -4
  13. package/source/retold-manager/package.json +23 -0
  14. package/source/retold-manager/retold-manager.js +65 -0
  15. package/source/retold-manager/source/Retold-Manager-App.js +1532 -0
  16. package/source/retold-manager/source/Retold-Manager-ModuleCatalog.js +75 -0
  17. package/source/retold-manager/source/Retold-Manager-ProcessRunner.js +706 -0
  18. package/source/retold-manager/source/views/PictView-TUI-Checkout.js +45 -0
  19. package/source/retold-manager/source/views/PictView-TUI-Header.js +41 -0
  20. package/source/retold-manager/source/views/PictView-TUI-Layout.js +53 -0
  21. package/source/retold-manager/source/views/PictView-TUI-Status.js +45 -0
  22. package/source/retold-manager/source/views/PictView-TUI-StatusBar.js +41 -0
  23. package/source/retold-manager/source/views/PictView-TUI-Update.js +45 -0
  24. package/examples/quickstart/layer1/package-lock.json +0 -344
  25. package/examples/quickstart/layer2/package-lock.json +0 -4468
  26. package/examples/quickstart/layer3/package-lock.json +0 -1936
  27. package/examples/quickstart/layer4/package-lock.json +0 -13206
  28. package/examples/quickstart/layer5/package-lock.json +0 -345
  29. package/examples/todo-list/cli-client/package-lock.json +0 -418
  30. package/examples/todo-list/console-client/package-lock.json +0 -426
  31. package/examples/todo-list/server/package-lock.json +0 -6113
  32. 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
+ };