aberdeen

Solid

Expert guidance for building reactive UIs with the Aberdeen library. Covers element creation, reactive state management, efficient list rendering, CSS integration, routing, transitions, and optimistic updates.

Web & Frontend 105 stars 9 forks Updated 5 days ago ISC

Install

View on GitHub

Quality Score: 83/100

Stars 20%
67
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
73
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

Aberdeen is a reactive UI library using fine-grained reactivity via JavaScript Proxies. No virtual DOM, no build step required. # Guidance for AI Assistants 1. **Use string syntax by default** - `A('div.box#Hello')` is more concise than object syntax 2. **Never concatenate user data** - Use `A('input value=', data)` not `A('input value=${data}')` 3. **Pass observables directly** - Use `text=', ref(obj, 'key')` to avoid parent scope subscriptions 4. **Use `onEach` for lists** - Never iterate proxy arrays with `for`/`map` in render functions 5. **Class instances are great** - Better than plain objects for typed, structured state 6. **CSS shortcuts** - Use $3, $4 for spacing (1rem, 2rem), $primary for colors 7. **Minimal scopes** - Smaller reactive scopes = fewer DOM updates # Obtaining info The complete tutorial follows below. For detailed API reference open these files within the skill directory: - **[aberdeen](aberdeen.md)** - Core: `$`, `proxy`, `onEach`, `ref`, `derive`, `map`, `multiMap`, `partition`, `count`, `isEmpty`, `peek`, `dump`, `clean`, `insertCss`, `insertGlobalCss`, `mount`, `runQueue`, `darkMode` - **[route](route.md)** - Routing: `current`, `go`, `push`, `back`, `up`, `persistScroll` - **[dispatcher](dispatcher.md)** - Path matching: `Dispatcher`, `MATCH_REST`, `MATCH_FAILED` - **[transitions](transitions.md)** - Animations: `grow`, `shrink` - **[prediction](prediction.md)** - Optimistic UI: `applyPrediction`, `applyCanon`

Details

Author
vanviegen
Repository
vanviegen/aberdeen
Created
6 years ago
Last Updated
5 days ago
Language
TypeScript
License
ISC

Similar Skills

Semantically similar based on skill content — not just same category