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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@skeems/openlibrary

v0.6.0

Published

Read-only Open Library adapter for the skeem CLI.

Downloads

90

Readme

@skeems/openlibrary

Read-only Open Library adapter for skeem.

adapter: openlibrary
connection:
  url: https://openlibrary.org

No authentication; a descriptive User-Agent is sent.

Tier: Read

Collections: works, editions, authors, keyed by bare Open Library ids (OL2163649W / OL27297031M / OL272947A). Path-prefixed keys (/works/OL…) are accepted on input and stripped everywhere on output.

skeem get authors OL272947A --json                     # Douglas Adams
skeem get works OL2163649W --json
skeem find works --where title="Hitchhiker's Guide" --json
skeem find authors --where name="Douglas Adams" --json
skeem find editions --where isbn=9780261103569 --json  # ISBN lookup

externalIds

Shared vocabulary — see docs/reference/external-ids.md:

  • authors expose remote_ids: wikidata, viaf, isni, imdb, musicbrainz_artist, goodreads_author, lc_naf, librarything, amazon (unknown keys pass through as-is).
  • editions expose isbn_10/isbn_13 (normalized), oclc, lccn, and identifiers (goodreads_book, …).

Notes

  • Edition records are fetched via /books/{id}.json (Open Library's path for editions); ISBN lookups go through /isbn/{isbn}.json and follow the redirect. A missing ISBN returns an empty find result, not an error.
  • Merged records (HTTP 200 with a /type/redirect body) are followed one hop.
  • ISBNs are normalized: hyphens/spaces stripped, X uppercased, and all-digit values shorter than 10 left-padded (the CLI's number coercion eats leading zeros — --where isbn=0261103563 still works).
  • --sort is unsupported (validation error); works/authors search supports --limit/--offset.

Writes are rejected as read-only.