How it works
onefold uses fine-grained signals for reactivity. When a value changes, only the specific part of the page that depends on it updates — nothing else re-renders. There is no virtual DOM and no diffing step. This makes updates fast and predictable.
Components are plain TypeScript functions that return DOM nodes. There are no classes, decorators, or special syntax. If you know HTML and JavaScript, you can start building with onefold right away.