UNPKG

open-libra

Version:
15 lines (12 loc) 358 B
var openLibra = require('./') var client = openLibra.createClient() client.books('/', 'GET', { publisher: 'Green Tea Press', num_items: 1 }, function (err, books) { if (!err) { console.log(books) } }) client.search('eloquent javascript', { criteria: 'most_voted', num_items: 1 }, function (err, books) { if (!err) { console.log(books) } })