Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

The Rest of the Family

This book is the engine: what resolves a configuration, what stores it, what watches it, and the macro that declares one. Four crates.

Everything else that carries the name lives in a repository of its own, with a book on this same site. They are separate because they release separately — a store's client library moving, or a Node package needing a fix, is not a reason to re-cut the engine — and each of them names this engine with a caret, so it picks up a patch release here when it is ready rather than when it is forced.

BookWhat it coversShips as
Remote storesetcd, Consul, Vault, NATS, Redis, S3, Firestore and git — and the server that hands a section to a client that cannot reach any of themeight crates, plus dynamic-config-server
Pythonthe same engine behind a Python API: dataclasses, Pydantic, msgspec, asynciodynamic-config-py on PyPI
Node.jsthe same engine behind Node-API: Zod, Ajv, a plain function, a watcher that never blocks the loopdynamic-config-node on npm

What crosses between them is the trait. A store implements RemoteSource — or its async twin — and the engine knows nothing else about it. That is what lets the stores live elsewhere without this crate having a feature flag for each of them, and what lets somebody write a store this project has never heard of.