UNPKG

@danielkalen/simplybind

Version:

Magically simple, framework-less one-way/two-way data binding for frontend/backend in ~5kb.

11 lines (9 loc) 177 B
export class NetWorth { constructor() { this.update(); setInterval(() => this.update(), 1000); } update() { this.netWorth = Math.random() * 1000000000; } }