Muam CLI v3.0 Released!

Modernize your workflow with the next generation command-line interface.

Discover Features

CLI v3.0 - The Future is Here

By Lena S.

Sep 5, 2025

Version 3 of the Muam Command Line Interface brings a complete reimagining of developer workflows. With zero-config startup, interactive project scaffolding, and AI-powered project setup, creating professional web applications has never been simpler.

Key Features

🚀 Zero-Config

Start new projects with a single command. CLI v3 automatically configures the best development environment for your project type.

🧠 AI Suggestions

Get AI-generated project structures and dependency recommendations tailored to your development needs.

âš¡ Instant Hot-reload

Changes to your code are instantly reflected in your browser with our next-generation hot module replacement.

📦 Plugin Ecosystem

Access hundreds of official and community plugins to extend your development environment.

Getting Started


npm create muam@latest

Create your first Muam project in seconds. The CLI will automatically ask you to select features like TypeScript, routing, testing framework, and more.

JavaScript

```js
// muam/project.js
import { init, state, view } from 'muam';

const Counter = () => {
  const count = state(0);
  return view\`
    <div class="p-4 bg-gradient-to-r from-purple-900 to-blue-900 rounded-lg shadow-md">
      <h1 class="text-2xl font-bold text-white mb-2">Counter: ${count}</h1>
      <button class="bg-white text-purple-800 px-4 py-2 rounded hover:bg-purple-50 transition">
        @click="\${() => count.value++}" 
        Increment
      </button>
    </div>
  \`;
};
```

Start Building Better

The Muam CLI v3 is your gateway to modern web development. With its intelligent suggestions and zero-configuration workflow, you can focus on what matters most - building amazing applications.