UNPKG

open-libra

Version:
24 lines (15 loc) 377 B
# open-libra Simple client for Open Libra API ## Install $ npm install open-libra --save ## Usage ``` js var openLibra = require('open-libra') var client = openLibra.createCliente() client.books('/', 'GET', { id: 589 }, function (err, books) { // do something books }) client.search('javascript', { num_items: 5 }function(err, books) { // do something books }) ```