0.0.16 • Published 6 years ago

tsf-web v0.0.16

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

TSF - TypeScript Web Framework

An lightweight web framework for TypeScript :surfer: 1.8 kB (minified and gzipped),

Build Status

Documentation and Examples - https://stan-kondrat.github.io/tsf

const app = new TSF('#app');

class Main {
    public $template = `<button $onclick="this.plus()">Plus</button> {{ this.counter }}`;
    public counter = 0;
    
    plus() {
        this.counter++; // DOM will updated automatically
    }
}

const main = new Main();

app.run(main); // Render application root component

main.counter = 100; // DOM will updated automatically

Installing / Getting started

npm install tsf-web

Licensing

The TSF is open-sourced software licensed under the MIT.

0.0.16

6 years ago

0.0.15

7 years ago

0.0.14

7 years ago

0.0.13

7 years ago

0.0.12

7 years ago

0.0.10

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago