Bithumb exchange api wrapper
npm install bithumb.js
const Bithumb = require('bithumb.js')
const bithumb = new Bithumb('YOUR_KEY', 'YOUR_SECRET');
(async function () {
const orderBook = await bithumb.getOrderbook('ALL')
console.log(orderBook)
}())
See example.js
for the implemented methods