npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

public-domain-nypl-captures

v1.1.0

Published

Gets captures from the public domain part of the NYPL Digital Collection.

Downloads

14

Readme

public-domain-nypl-captures

Gets captures from the public domain part of the NYPL Digital Collection.

Installation

npm install public-domain-nypl-captures

Usage

Getting a random item that contain captures:

var nyplCaptures = require('public-domain-nypl-captures');
nyplCaptures.getRandomItem(logItem);

function logItem(error, item) {
  if (error) {
    console.log(error, error.stack);
  }
  else {
    console.log(JSON.stringify(item, null, '  '));
  }
}

Output:

{
  "UUID": "4f3fb950-47ae-0130-b42b-58d385a7b928",
  "databaseID": 4885857,
  "title": "Fields, [James T.], ALS to. Jan. 12, 1851.",
  "alternativeTitle": [],
  "contributor": [
    {
      "contributorName": "Hawthorne, Nathaniel, 1804-1864",
      "contributorType": false,
      "contributorRole": [
        "Author"
      ],
      "contributorURI": "http://viaf.org/viaf/44435463"
    },
    {
      "contributorName": "Fields, James Thomas, 1817-1881",
      "contributorType": "personal",
      "contributorRole": [
        "Addressee"
      ],
      "contributorURI": "http://viaf.org/viaf/1254825"
    }
  ],
  "date": [
    "1851-01-12"
  ],
  "dateStart": 1851,
  "dateEnd": null,
  "language": [],
  "description": [],
  "note": [
    {
      "type": "citation/reference",
      "text": "Centenary Edition, XVI, The Letters 1843-1853, p. 382, #461."
    },
    {
      "type": "ownership",
      "text": "W. T. H. Howe"
    }
  ],
  "subjectTopical": [],
  "subjectName": [],
  "subjectGeographic": [],
  "subjectTemporal": [],
  "subjectTitle": [],
  "resourceType": [
    "text"
  ],
  "genre": [
    {
      "text": "Correspondence",
      "URI": "http://id.loc.gov/vocabulary/graphicMaterials/tgm002590"
    }
  ],
  "identifierBNumber": null,
  "identifierAccessionNumber": "134195B",
  "identifierCallNumber": "NH ALS to James Fields  Jan. 12, 1851",
  "identifierISBN": null,
  "identifierISSN": null,
  "identifierInterviewID": null,
  "identifierPostcardID": null,
  "identifierLCCN": null,
  "identifierOCLCRLIN": null,
  "physicalDescriptionExtent": [
    "1 double leaf"
  ],
  "physicalDescriptionForm": [
    "Letters"
  ],
  "publisher": [],
  "placeOfPublication": [
    "Lenox, MA"
  ],
  "collectionUUID": "84b97660-371f-0130-802e-58d385a7b928",
  "containerUUID": "e90ee1f0-3726-0130-08a6-58d385a7b928",
  "collectionTitle": "Nathaniel Hawthorne collection of papers, 1694-1931 bulk (1817-1864)",
  "containerTitle": "Outgoing Correspondence",
  "parentHierarchy": "Nathaniel Hawthorne collection of papers, 1694-1931 bulk (1817-1864) / Correspondence / Outgoing Correspondence",
  "numberOfCaptures": 8,
  "captures": [
    "http://images.nypl.org/index.php?id=5053377&t=g",
    "http://images.nypl.org/index.php?id=5053378&t=g",
    "http://images.nypl.org/index.php?id=5053380&t=g",
    "http://images.nypl.org/index.php?id=5053379&t=g",
    "http://images.nypl.org/index.php?id=5053382&t=g",
    "http://images.nypl.org/index.php?id=5053383&t=g",
    "http://images.nypl.org/index.php?id=5053381&t=g",
    "http://images.nypl.org/index.php?id=5053384&t=g"
  ],
  "digitalCollectionsURL": "http://digitalcollections.nypl.org/items/4f3fb950-47ae-0130-b42b-58d385a7b928"
}

Getting a single random capture image, along with some metadata about it.

var nyplCaptures = require('public-domain-nypl-captures');
var opts = {
  filterOutBrokenImageLinks: true,
  maxRetries: 5,
  validSizes: [
    'q',
    'w',
    'r'
  ]
};
nyplCaptures.getRandomCapture(opts, logCapture);

function logCapture(error, capture) {
  if (error) {
    console.log(error, error.stack);
  }
  else {
    console.log(JSON.stringify(capture, null, '  '));
  }
}

Output:

{
  "sourceUUID": "8906f040-c54b-012f-cd7a-58d385a7bc34",
  "title": "The Lincoln Memorial",
  "imageURL": "http://images.nypl.org/index.php?id=4022569&t=g",
  "preferredImageURL": "http://images.nypl.org/index.php?id=4022569&t=w",
  "digitalCollectionsURL": "http://digitalcollections.nypl.org/items/8906f040-c54b-012f-cd7a-58d385a7bc34"
}

The filterOutBrokenImageLinks opt will make getRandomCapture to check each image link to make sure it's still good before selecting it. maxRetries, which defaults to 10, tells it how many times to retry if it gets back items with image links that are all bad (meaning not responding or not images).

validSizes, if specified, should be an array listing the desired image sizes in order of preference. The possible values are the NYPL Digital Collections API imageLink types:

b - .jpeg center cropped thumbnail (100x100 pixels)
f - .jpeg (140 pixels tall with variable width)
t - .gif (150 pixels on the long side)
r - .jpeg (300 pixels on the long side)
w - .jpeg (760 pixels on the long side)
q - .jpeg (1600 pixels on the long side)
v - .jpeg (2560 pixels on the long side)
g - .jpeg original dimensions

getRandomCapture will check for the valid sizes in the order specified and return the first one that actually exists if filterOutBrokenImageLinks is set. If it is not set, it will just assume the first image size you specify exists. preferredImageURL will not exist if it cannot find an image at one of the sizes you specify. If validSizes is not set, preferredImageURL will not exist in that case, either. imageURL will always be set to the original image size (g).

Tests

Run tests with make test.

License

The MIT License (MIT)

Copyright (c) 2016 Jim Kang

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.