0.0.1 • Published 11 years ago

isbn-cover v0.0.1

Weekly downloads
1
License
-
Repository
github
Last release
11 years ago

isbn-cover

Get a book cover from a 9, 10, or 13 digit ISBN. Works with AMD, CommonJS, Node, and browser globals.

usage (browser)

cover = window['isbn-cover'] // or use AMD `require`
isbn = 440234816

cover(isbn, function(img) {
	// `img` is an element, so:
	document.body.appendChild(img);
}, function (error) {
	...
});

usage (node)

cover = require('isbn-cover')
isbn = 440234816

cover(isbn, function(img) {
	// `img` is a data string
}, function (error) {
	...
});