@tadko/bitflyer-client
Version:
A Client for BitFlyer API
21 lines (13 loc) • 329 B
Markdown
Bitflyer Client
====
JS client for Bitflyer API
`npm install --save @tadko/bitflyer-client`
```typescript
import { BitflyerClient } from '@tadko/bitflyer-client'
const bitflyerClient = new BitflyerClient();
bitflyerClient.getBoard()
.then(console.log)
.catch(console.error)
```