Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
Basic counter using Mithril.js with theme toggle.
var Counter = {
count: 0,
isDark: false,
view: function() {
return m('div', { class: this.isDark ? 'dark-theme' : 'light-theme' }, [
m('h2', 'Counter: ' + this.count),
m('div', [
m('button', { onclick: () => { this.count++; } }, '+'),
m('button', { onclick: () => { this.count--; } }, '-'),
m('button', { onclick: () => { this.count = 0; } }, 'Reset')
]),
m('button', { onclick: () => { this.isDark = !this.isDark; } }, 'Switch to ' + (this.isDark ? 'Light' : 'Dark') + ' Theme')
]);
}
};
m.mount(document.body, Counter);Mithril.js is a modern, client-side JavaScript framework for building single-page applications. It is small, fast, and provides a virtual DOM, routing, and XHR utilities, allowing developers to create high-performance, modular web applications.
Origin & Creator
Created by Leo Horie and first released in 2011.
Industrial Note
Mithril is ideal for performance-critical SPAs, modular component-based apps, and projects where minimal dependencies and high efficiency are essential.