0.1.1 • Published 7 years ago

open-libra v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

open-libra

Simple client for Open Libra API

Install

$ npm install open-libra --save

Usage

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
})