JSPM

oclc-pull-list

1.0.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 4
    • Score
      100M100P100Q34018F
    • License MIT

    Retrieve a pull list from a WMS library

    Package Exports

    • oclc-pull-list

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (oclc-pull-list) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    oclc-pull-list

    Example

    var PullList = require('oclc-pull-list')
      , key = { 'key': 'abc123', 'secret': 'secret'}
      ;
    
    PullList(key, 128156)
      .startIndex(1)   // defaults to 1
      .itemsPerPage(5) // defaults to 10
      .fetch(function(err, items) {
        if (err) return console.warn(err);
    
        items.forEach(function(item) {
            console.log(item.bibliographicItem.title);
        })
      });

    License

    MIT