Monde Documentation

Build dynamic, responsive, and interactive web applications with Monde's modern framework combining web standards, web components, and declarative programming.

Getting Started

  1. 1 Install Monde CLI
  2. 2 Create new project with monde create
  3. 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' }

Found a Bug?

Report Issues

Open GitHub Issue →