maw 0.30.2

A simple and efficient web framework for Rust.
Documentation
1
2
3
4
5
6
// Simple counter with button
let count = 0;
const btn = document.createElement('button');
btn.textContent = 'Click me!';
btn.onclick = () => { count++; btn.textContent = `Clicks: ${count}`; };
document.body.appendChild(btn);