Hooks

Explore all available hooks and their capabilities.

A

useArray

Reactive array with automatic re-rendering

A hook that returns a reactive array with all native Array methods (push, pop, splice, etc.) that automatically trigger component re-renders when the array is mutated.

View Documentation Supports all Array methods
M

useMap

Reactive Map with automatic re-rendering

A hook that returns a reactive Map with set, delete, and clear operations that automatically trigger component re-renders when the map is mutated.

View Documentation Supports set, delete, clear
S

useSet

Reactive Set with automatic re-rendering

A hook that returns a reactive Set with add, delete, and clear operations that automatically trigger component re-renders when the set is mutated.

View Documentation Supports add, delete, clear
Q

useQueue

Reactive Queue implementation

A hook that returns a reactive Queue with enqueue, dequeue, peek, and isEmpty operations that automatically trigger component re-renders when the queue is modified.

View Documentation Supports enqueue, dequeue, peek, isEmpty
S

useStack

Reactive Stack implementation

A hook that returns a reactive Stack with push, pop, peek, and isEmpty operations that automatically trigger component re-renders when the stack is modified.

View Documentation Supports push, pop, peek, isEmpty