# tsf-web

> TypeScript Web Framework

Latest version **0.0.16** (published 2017-11-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install tsf-web
pnpm add tsf-web
yarn add tsf-web
bun add tsf-web
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.16 |
| Published | 2017-11-22 |
| First published | 2017-08-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 7 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Author | Stanislav Kondratyuk |
| Maintainers | stankondrat |

## Links

- npm: https://www.npmjs.com/package/tsf-web
- Repository: https://github.com/stan-kondrat/tsf
- Homepage: https://github.com/stan-kondrat/tsf#readme
- Issues: https://github.com/stan-kondrat/tsf/issues
- npm.io page: https://npm.io/package/tsf-web

## Dependencies (7)

- [jest](https://npm.io/package/jest.md) ^20.0.4
- [rimraf](https://npm.io/package/rimraf.md) ^2.6.2
- [tslint](https://npm.io/package/tslint.md) ^5.8.0
- [ts-jest](https://npm.io/package/ts-jest.md) ^20.0.14
- [typescript](https://npm.io/package/typescript.md) ^2.6.1
- [@types/jest](https://npm.io/package/@types/jest.md) ^20.0.7
- [@types/node](https://npm.io/package/@types/node.md) ^8.0.48

## Recent versions

- 0.0.16 (latest) — 2017-11-22
- 0.0.15 — 2017-11-13
- 0.0.14 — 2017-11-13
- 0.0.13 — 2017-10-30
- 0.0.12 — 2017-10-29
- 0.0.10 — 2017-08-12
- 0.0.9 — 2017-08-12
- 0.0.8 — 2017-08-12
- 0.0.7 — 2017-08-12
- 0.0.6 — 2017-08-12
- 0.0.5 — 2017-08-12
- 0.0.4 — 2017-08-11
- 0.0.3 — 2017-08-11
- 0.0.2 — 2017-08-11
- 0.0.1 — 2017-08-10

## README

# TSF - TypeScript Web Framework
> An lightweight web framework for TypeScript :surfer: 1.8 kB (minified and gzipped),

[![Build Status](https://travis-ci.org/stan-kondrat/tsf.svg)](https://travis-ci.org/stan-kondrat/tsf)

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

```typescript
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

```shell
npm install tsf-web
```

## Licensing

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

---
_Source: https://npm.io/package/tsf-web · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
