Installation
The full installation walkthrough — Bun, Astro, Starlight, and the Abstract Data plugin.
Prerequisites
Section titled “Prerequisites”You need:
- Bun
1.1+—curl -fsSL https://bun.sh/install | bash - An existing Astro Starlight project, or a new one created from the official template.
Create a new project
Section titled “Create a new project”bun create astro@latest my-docs -- --template starlightcd my-docsbun add @abstractdata/starlight-themeAdd to existing project
Section titled “Add to existing project”bun add @abstractdata/starlight-themeThen register the plugin in astro.config.mjs:
import abstractData from '@abstractdata/starlight-theme';
starlight({ // ...your existing config plugins: [abstractData()],});Verify
Section titled “Verify”bun devOpen http://localhost:4321 — you should see the Abstract Data HUD surface.
Built by Abstract Data