Skip to content

MettleApproachable, fast, flexible JavaScript library

Building user interfaces

Mettle
jsx
function Counter() {
  let count = $signal(0);
  const add = () => count++;
  return <button onClick={add}>{count}</button>;
}

Released under the MIT License.