0.0.5 • Published 4 years ago

bzk-proxy-api v0.0.5

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

BZKProxyAPI

Code Like this

let c: Config = new Config({});

(async function example() {
    let cmcs = new CoinMarketCapSpider(c, CPSymbol.BTC).setStartAt(new Date(2013,1,1));
    await cmcs.fetch();
    console.log(JSON.stringify(cmcs.getData()));
})();