Build fast reactive UIs in pure TypeScript/JavaScript without a virtual DOM.
Aberdeen's approach is refreshingly simple:
Use many small anonymous functions for emitting DOM elements, and automatically rerun them when their underlying data changes. JavaScript
Proxyis used to track reads and updates to this data, which can consist of anything, from simple values to complex, typed, and deeply nested data structures.
First, let's start with the obligatory reactive counter example. If you're reading this on the official website you should see a working demo below the code, and an 'edit' button in the top-right corner of the code, to play around.
import {$, proxy, ref} from 'aberdeen';
// Define some state as a proxied (observable) object
const state = proxy({question: "How many roads must a man walk down?", answer: 42});
$('h3', () => {
// This function reruns whenever the question or the answer changes
$('text=', `${state.question} ↪ ${state.answer || 'Blowing in the wind'}`)
});
// Two-way bind state.question to an <input>
$('input placeholder=Question bind=', ref(state, 'question'))
// Allow state.answer to be modified using both an <input> and buttons
$('div.row marginTop:1em', () => {
$('button text=- click=', () => state.answer--);
$('input type=number bind=', ref(state, 'answer'))
$('button text=+ click=', () => state.answer++);
});
Okay, next up is a somewhat more complex app - a todo-list with the following behavior:
Pfew.. now let's look at the code:
import {$, proxy, onEach, insertCss, peek, unproxy, ref} from "aberdeen";
import {grow, shrink} from "aberdeen/transitions";
// We'll use a simple class to store our data.
class TodoItem {
constructor(public label: string = '', public done: boolean = false) {}
toggle() { this.done = !this.done; }
}
// The top-level user interface.
function drawMain() {
// Add some initial items. We'll wrap a proxy() around it!
let items: TodoItem[] = proxy([
new TodoItem('Make todo-list demo', true),
new TodoItem('Learn Aberdeen', false),
]);
// Draw the list, ordered by label.
onEach(items, drawItem, item => item.label);
// Add item and delete checked buttons.
$('div.row', () => {
$('button text=+ click=', () => items.push(new TodoItem("")));
$('button.outline text="Delete checked" click=', () => {
for(let idx in items) {
if (items[idx].done) delete items[idx];
}
});
});
};
// Called for each todo list item.
function drawItem(item) {
// Items without a label open in editing state.
// Note that we're creating this proxy outside the `div.row` scope
// create below, so that it will persist when that state reruns.
let editing: {value: boolean} = proxy(item.label == '');
$('div.row', todoItemStyle, 'create=', grow, 'destroy=', shrink, () => {
// Conditionally add a class to `div.row`, based on item.done
$({".done": ref(item,'done')});
// The checkmark is hidden using CSS
$('div.checkmark text=✅');
if (editing.value) {
// Proxied string to hold label while being edited.
const labelCopy = proxy(item.label);
function save() {
editing.value = false;
item.label = labelCopy.value;
}
// Label <input>. Save using enter or button.
$('input placeholder=Label bind=', labelCopy, 'keydown=', e => e.key==='Enter' && save());
$('button.outline text=Cancel click=', () => editing.value = false);
$('button text=Save click=', save);
} else {
// Label as text.
$('p text=', item.label);
// Edit icon, if not done.
if (!item.done) {
$('a text=Edit click=', e => {
editing.value = true;
e.stopPropagation(); // We don't want to toggle as well.
});
}
// Clicking a row toggles done.
$('cursor:pointer click=', () => item.done = !item.done);
}
});
}
// Insert some component-local CSS, specific for this demo.
const todoItemStyle = insertCss({
marginBottom: "0.5rem",
".checkmark": {
opacity: 0.2,
},
"&.done": {
textDecoration: "line-through",
".checkmark": {
opacity: 1,
},
},
});
// Go!
drawMain();
Some further examples:
And you may want to study the examples above, of course!
If you use Claude Code, GitHub Copilot or another AI agents that supports Skills, Aberdeen includes a skill/ directory that provides specialized knowledge to the AI about how to use the library effectively.
To use this, it is recommended to symlink the skill into your project's .claude/skills directory:
mkdir -p .claude/skills
ln -s ../../node_modules/aberdeen/skill .claude/skills/aberdeen
See CHANGELOG.md for a full history of changes.