Signals
Reactive state with fine-grained reactivity and computed values.
Explore >Angular 18+ · Standalone lab
A quiet gallery of modern Angular. Signals, forms, SSR, and zoneless — each one on its own pedestal.
const count = signal(0);
const doubled = computed(() => count() * 2);
effect(() => {
console.log('count is', count());
});Nine interactive exhibits, lazy-loaded at the route boundary. No chrome competing with the content.
Each tile is a working exhibit. Search the index, then step inside.
Reactive state with fine-grained reactivity and computed values.
Explore >Template-driven and reactive forms with validation.
Explore >Data operations with optimistic updates and error handling.
Explore >Incremental hydration and deferred loading for performance.
Explore >Reactive streams, operators, and observable patterns.
Explore >Hierarchical injectors, tokens, and modern DI patterns.
Explore >Guards, lazy loading, and protected-route patterns.
Explore >Triggers, transitions, and keyframes in motion.
Explore >Zone.js-free change detection with signal reactivity.
Explore >Showing 9 of 9 exhibits