Master Muam development with step-by-step guides for developers of all skill levels.
Start LearningUse the Muam command line interface to instantly create a production-ready project.
npx create-muam@latest
Create your first interactive Muam component with state management and rendering.
import { state, view } from 'muam';
const Counter = () => {
const count = state(0);
return view`
Count: ${count}
`;
};
Leverage Muam's intelligent state system that automatically updates views when data changes.
Compile C/C++/Rust to WebAssembly to run performance-critical code in the browser.
Intelligent code suggestions and auto-optimized code generation powered by embedded models.
Explore Muam's full documentation, examples, and community forums to level up your skills.
📚 Full Docs