Getting Started
Installation
Section titled “Installation”npm install @rimitive/core @rimitive/signalsYour First App
Section titled “Your First App”Create a counter with reactive state and DOM rendering. Start by installing the deps:
npm install @rimitive/core @rimitive/signals @rimitive/viewThen, create the app:
Loading sandbox...
That’s it! Click the button, the count updates, the DOM updates automatically.
What Just Happened?
Section titled “What Just Happened?”compose()wires modules together into a servicesignal()creates reactive state — read withcount(), write withcount(newValue)computed()derives values that update when dependencies changeel()creates DOM elements with reactive children and propsmount()attaches the element tree to the DOM