1. Check the prerequisites
Use Node.js 22.23.2 or newer, npm, and Git. The browser quick start needs no Arcane OS checkout or native provider.
This guide pins arcane-os@0.5.18 explicitly so the scaffold and installed project use the same released SDK.
2. Scaffold one browser application
Name the published package and the browser target explicitly. Native targets are a separate provider-paired workflow.
npx arcane-os@0.5.18 new local-app --path ./local-app --target browser --gitExpected: one new Git repository containing apps/local-app/, a schema-2 browser descriptor, tests, and a generated CI workflow.
3. Install the project-local SDK
The scaffold records exact arcane-os version 0.5.18. Install it in the generated repository and let npm record the dependency resolution in package-lock.json.
cd local-app
npm install4. Run the browser app
The generated scripts use the SDK pinned by the app lockfile. Development serves your saved source. Run tests or checks only when you explicitly select them.
npm run devThe development command acknowledges first, prints the loopback URL, and owns its server until you cancel it.