Step-by-step guides for developers at every skill level to build powerful web applications.
Get StartedBuild your first Muam project in under 10 minutes
Step-by-step installation, project setup, and a simple app demo with automatic build tools. Perfect for beginners with no prior Muam experience.
Read TutorialMaster complex Muam concepts like state management and routing
Explore advanced patterns for large-scale applications, performance optimization, and custom hooks. Ideal for experienced users.
Read TutorialCombine Muam with third-party libraries and frameworks
Learn to integrate Muam with React, Vue, and APIs. Tips for working with existing codebases and ecosystems.
Read Tutorial
// muam/tutorial.js
import { state, view } from 'muam';
const Counter = () => {
const count = state(0);
return view`
Count: ${count}
`;
};
Our tutorials are designed to help you learn by doing. Start with the basics and graduate to complex applications.
🚀 Start Tutorial 📢 Contribute