# {{name}}
{{description}}
Scaffolded by [`node-app new --profile standalone-native`](https://github.com/econ-v1/node).
**Standalone Rust daemon** that runs as its own systemd unit at
`node-app-{{name}}.service` and (optionally) exposes a JSON-RPC 2.0 control
API over a Unix socket at `/run/node-app-{{name}}.sock`. The platform
reaches in via that socket; the app reaches out to `/run/node/control.sock`
for platform capabilities.
> **Standalone is an escape hatch.** It is **not** eligible for the shared
> Bun runtime (#810) — that feature is Bun-only — and unlike `native`, the
> platform does not load this app in-process. Use it only when you genuinely
> need your own systemd unit (LCD daemons, OTA controllers, hardware
> bridges). For most apps, prefer `node-app new --profile native`.
## Quickstart
```bash
cargo check
node-app dev # hot-reload against your local monorepo
node-app audit # check this app against the blueprint
```
See `AGENTS.md` for the architecture brief.