Zero-config development with intelligent suggestions and interactive scaffolding.
Discover FeaturesUse the official CLI to create Muam projects instantly with zero configuration.
npx create-muam@latest
Generate a new Muam project with preconfigured build tools and development settings.
npm create muam@latest
Get intelligent project structure and dependency recommendations tailored to your workflow.
Changes to your code appear instantly in the browser with our next-generation HMR.
Access hundreds of official and community-created tools to extend development environment.
Initialize new project with interactive prompts for project setup.
muam init my-project
Create optimized production build with tree-shaking and code splitting.
muam build -p production
// muam/project.js
import { init, state, view } from 'muam';
const App = () => {
return view\`
<div class="p-4 bg-purple-900 text-white">
Hello Muam CLI!
</div>
\`;
};
init(App);
The Muam CLI v3 is your gateway to modern web development. With intelligent suggestions and zero-configuration workflows, you can focus on what matters most - building amazing applications.