Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

multi-isbn

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multi-isbn

Find books by ISBN from isbndb, google, open library and worldcat

latest
Source
npmnpm
Version
0.3.1
Version published
Maintainers
1
Created
Source

multi-isbn

Find books by ISBN from ISBN DB, Google Book API, Open Library and Worldcat

Module Installation

This module is installed via npm:

npm i multi-isbn --save

Example Usage

var multiIsbn = require('multi-isbn')
multiIsbn.init()
multiIsbn.find(isbn, function(err, data) {
  if (err) throw err
  console.log(JSON.stringify(data, null, 2))
})

Or initialize with select access keys:

var multiIsbn = require('multi-isbn')
var options    = {
  isbndb_key:      convar('isbndb_key'),
  google_book_key: convar('google_book_key')
}
multiIsbn.init(options)
multiIsbn.find(isbn, function(err, data) {
  if (err) throw err
  console.log(JSON.stringify(data, null, 2))
})

CLI Install

npm i multi-isbn -g

Example Usage

multi-isbn --isbn 9781595231123

Support

  • ISBN DB
  • Google Books
  • Open Library
  • Worldcat

CLI Support

  • ISBN DB
  • Google Books
  • Open Library
  • Worldcat

Rights

This project is licensed: MIT

dependencies libraries may differ (see each for respective licenses)

Keywords

multi

FAQs

Package last updated on 08 May 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts