isbn-cover

get a book cover image from isbn

Usage no npm install needed!

<script type="module">
  import isbnCover from 'https://cdn.skypack.dev/isbn-cover';
</script>

README

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) {
    ...
});