Angular 22 + TypeScript workspace using Taiga UI 5 component library.
This directory (shared-libs/ts-modules) holds the shared libraries; the Angular workspace root config (angular.json, package.json, tsconfig.json) lives at the repo root. The libraries live here directly:
shared/src/—@start9labs/shared(Angular)marketplace/src/—@start9labs/marketplace(Angular)start-core/lib/—@start9labs/start-core(non-Angular; the SDK's core types/ABI/effects/OS bindings, consumed by web and bundled into the SDK. Has its ownMakefile/package.json, built separately from the Angular workspace.)
The five apps are declared in angular.json but rooted in their product dirs, so paths below prefixed ui/, setup-wizard/, etc. actually live outside this directory:
| App | angular.json root |
|---|---|
ui |
../../projects/start-os/web/ui |
setup-wizard |
../../projects/start-os/web/setup-wizard |
start-tunnel |
../../projects/start-tunnel/web |
start-wrt |
../../projects/start-wrt/web |
brochure-marketplace |
../../projects/brochure-marketplace |
Apps import the libs via the root tsconfig.json path aliases @start9labs/shared → ./shared-libs/ts-modules/shared/src/public-api and @start9labs/marketplace → ./shared-libs/ts-modules/marketplace/index.
All backend communication uses JSON-RPC, not REST.
HttpService(shared/src/services/http.service.ts) — Low-level HTTP wrapper. Sends JSON-RPC POST requests viarpcRequest().ApiService(ui/src/app/services/api/embassy-api.service.ts) — Abstract class defining 100+ RPC methods. Two implementations:LiveApiService— Production, calls the real backendMockApiService— Development with mocks
api.types.ts(ui/src/app/services/api/api.types.ts) — NamespaceRRwith all request/response type pairs.
Calling an RPC endpoint from a component:
private readonly api = inject(ApiService)
async doSomething() {
await this.api.someMethod({ param: value })
}The live API handles x-patch-sequence headers — after a mutating call, it waits for the PatchDB WebSocket to catch up before resolving. This ensures the UI always reflects the result of the call.
The backend pushes state diffs to the frontend via WebSocket. This is the primary way components get data.
PatchDbSource(ui/src/app/services/patch-db/patch-db-source.ts) — Establishes a WebSocket subscription when authenticated. Buffers updates every 250ms.DataModel(ui/src/app/services/patch-db/data-model.ts) — TypeScript type for the full database shape (ui,serverInfo,packageData).PatchDB<DataModel>— Injected service. Usewatch$()to observe specific paths.
Watching data in a component:
private readonly patch = inject<PatchDB<DataModel>>(PatchDB)
// Watch a specific path — returns Observable, convert to Signal with toSignal()
readonly registry = toSignal(this.patch.watch$('ui', 'startosRegistry'))
readonly status = toSignal(this.patch.watch$('serverInfo', 'statusInfo'))
readonly packages = toSignal(this.patch.watch$('packageData'))In templates: {{ name() }} — signals are called as functions.
Three WebSocket use cases, all opened via api.openWebsocket$<T>(guid):
- PatchDB — Continuous state patches (managed by
PatchDbSource) - Logs — Streamed via
followServerLogs/followPackageLogs, buffered every 1s - Metrics — Real-time server metrics via
followServerMetrics
- Main app (
ui/src/app/app.routes.ts) — Route-based configuration with guards (AuthGuard,UnauthGuard,stateNot()), lazy loading vialoadChildren,PreloadAllModules. - Portal routes (
ui/src/app/routes/portal/portal.routes.ts) — Modern array-based routes withloadChildrenandloadComponent. - Setup wizard (
setup-wizard/src/app/app.routes.ts) — StandaloneloadComponent()per step. - Route config uses
bindToComponentInputs: true— route params bind directly to component@Input().
Two patterns:
-
Dynamic (spec-driven) —
FormService(ui/src/app/services/form.service.ts) generatesFormGroupfrom IST (Input Specification Type) schemas. Supports text, textarea, number, color, datetime, object, list, union, toggle, select, multiselect, file. Used for service configuration forms. -
Manual — Standard Angular
FormGroup/FormControlwith validators. Used for login, setup wizard, system settings.
Form controls live in ui/src/app/routes/portal/components/form/controls/ — each extends a base Control<Spec, Value> class and uses Taiga input components.
Dialog-based forms use PolymorpheusComponent + TuiDialogContext for modal rendering.
i18nPipe(shared/src/i18n/i18n.pipe.ts) — Translates English keys to the active language.- Dictionaries live in
shared/src/i18n/dictionaries/(en, es, de, fr, pl). - Usage in templates:
{{ 'Some English Text' | i18n }}
en.tsis the source of truth. Keys are English strings; values are numeric IDs (e.g.'Domain Health': 748).- Other language files (
de.ts,es.ts,fr.ts,pl.ts) use those same numeric IDs as keys, mapping to translated strings (e.g.748: 'Santé du domaine'). - When adding a new i18n key:
- Add the English string and next available numeric ID to
en.ts. - Add the same numeric ID with a proper translation to every other language file.
- Always provide real translations, not empty strings.
- Add the English string and next available numeric ID to
Services often extend Observable and expose reactive streams via DI:
ConnectionService— Combines network status + WebSocket readinessStateService— Polls server availability, manages app state (running,initializing, etc.)AuthService— TracksisVerified$, triggers PatchDB start/stopPatchMonitorService— Starts/stops PatchDB based on auth statePatchDataService— Watches entire DB, updates localStorage bootstrap
- Standalone components preferred (no NgModule). Use
importsarray in@Component. export default classfor route components (enables directloadComponentimport).inject()function for DI (not constructor injection).signal()andcomputed()for local reactive state.toSignal()to convert Observables (e.g., PatchDB watches) to signals.- OnPush change detection is the Angular 22 default, so components are OnPush without an explicit decorator. Components that need eager (CheckAlways) detection opt in with
ChangeDetectionStrategy.Eager(the renamed, non-deprecated form of the oldDefault). takeUntilDestroyed(inject(DestroyRef))for subscription cleanup.
- README.md — what this is and how to use it
- CONTRIBUTING.md — setup, build/test/format, translations
- AGENTS.md — agent / day-to-day operating rules (
CLAUDE.mdis a one-line@AGENTS.mdimport)