Muam Tutorials

Master Muam development with step-by-step guides for developers of all skill levels.

Start Learning

Creating Your First Project

1. Install CLI

Use the Muam command line interface to instantly create a production-ready project.

npx create-muam@latest

2. First Component

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}

`; };

Advanced Development

Reactive State

Leverage Muam's intelligent state system that automatically updates views when data changes.

WebAssembly

Compile C/C++/Rust to WebAssembly to run performance-critical code in the browser.

AI Integration

Intelligent code suggestions and auto-optimized code generation powered by embedded models.

Need More Help?

Explore Muam's full documentation, examples, and community forums to level up your skills.

📚 Full Docs