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