Monde Documentation
Build dynamic, responsive, and interactive web applications with Monde's modern framework combining web standards, web components, and declarative programming.
Core Concepts
Getting Started
- 1 Install Monde CLI
-
2
Create new project with
monde create
- 3 Build your first component
Monde API Reference
Component API
// Example Component define('my-counter', { template: `{{count}}`, data: { count: 0 }, methods: { increment() { this.data.count++ } } })
Routing System
Dynamic route parameters are captured automatically:
/profile/:id → { id: '123' }