coingecko-node-sdk
v1.6.1
Published
Simple SDK for CoinGecko's API
Downloads
158
Readme
CoinGecko SDK
Don't use this for now, but if you live at the bleeding edge, look at this example:
import { GeckoClient } from "coingecko-node-sdk";
(async () => {
const client = new GeckoClient();
const coins = await client.coins.list();
console.log(coins);
})();