UNPKG

@danielkalen/simplybind

Version:

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

12 lines (9 loc) 260 B
import {HttpClient} from 'aurelia-http-client'; export class AureliaRepositories { repos = []; activate() { return new HttpClient() .get('https://api.github.com/orgs/aurelia/repos') .then(response => this.repos = response.content); } }