Lyder is a JavaScript/TypeScript library that allows you to build complex user interfaces with ease.
function App() {
let $count = 0; // Create a reactive variable
return <button onclick={() => $count++}>Count: {$count}</button>;
}Look at the project creation guide to learn how to create a new Lyder application.
You can find the Lyder documentation here, which includes explanations of how certain concepts work in Lyder.