he1d1 / decora

A modern MVC for TypeScript.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Decora

A modern MVC for Typescript.

Examples

Here are some things that are made easy with Decora:

Counter

@page('/') @island('counter-island')
class Counter {
  count = 0;
  render() {
    return html`<button onclick={() => this.count++}>counter: {this.count}</button>`
  }
}

About

A modern MVC for TypeScript.


Languages

Language:JavaScript 65.9%Language:TypeScript 34.1%