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

loc-marc-relators

v1.0.0

Published

A small wrapper around the U.S. Library of Congress' MARC Relator database

Readme

LOC MARC Relators

A small TypeScript wrapper around the U.S. Library of Congress (LOC) MAchine-Readable Cataloging (MARC) Relator database. Because there are hundreds of possible relationships, this small API wrapper can be used to either (1) retrieve the entire dataset or (2) accept a three-letter code and return the corresponding MARC relator, if it exists.

For those projects needing an "offline" mode, the current LOC MARC dataset is included and can be used without an internet connection.

Requirements

  • Node.js 20 or later.

Installation

npm install loc-marc-relators

Usage

Each returned relator has the following shape:

interface MarcRelator {
  code: string;  // three-letter MARC code, e.g. "aut"
  label: string; // human-readable name, e.g. "author"
  uri: string;   // fully-qualified LOC URI
}

Sync API (bundled data, no network required)

The sync functions use a dataset bundled with the package. This is the recommended API for most use cases. It works offline, in build tools, and requires no await.

import { getAllRelators, getRelatorByCode } from 'loc-marc-relators';

// Get all 300+ relators
const relators = getAllRelators();
// [{ code: 'abr', label: 'abridger', uri: '...' }, ...]

// Look up a single relator by code (case-insensitive)
const author = getRelatorByCode('aut');
// { code: 'aut', label: 'author', uri: 'http://id.loc.gov/vocabulary/relators/aut' }

const missing = getRelatorByCode('xyz');
// null

The bundled dataset is refreshed automatically each month via a GitHub Actions workflow that opens a pull request if the upstream vocabulary changes.

Async API (live data from the Library of Congress)

Use these functions when you need the absolute latest data directly from id.loc.gov.

import { fetchRelators, fetchRelatorByCode } from 'loc-marc-relators';

// Fetch the full vocabulary
const relators = await fetchRelators();

// Fetch a single relator by code
const author = await fetchRelatorByCode('aut');
// { code: 'aut', label: 'author', uri: '...' }

const missing = await fetchRelatorByCode('xyz');
// null

API Reference

| Function | Returns | Description | |---|---|---| | getAllRelators() | MarcRelator[] | All relators from the bundled dataset, sorted by code | | getRelatorByCode(code) | MarcRelator \| null | Single relator from the bundle; case-insensitive; null if not found | | fetchRelators() | Promise<MarcRelator[]> | All relators fetched live from id.loc.gov | | fetchRelatorByCode(code) | Promise<MarcRelator \| null> | Single relator fetched live; null if not found |

Updating the bundled data manually

npm run update-data

This fetches the latest vocabulary from the Library of Congress and overwrites src/data/relators.ts. Commit the result to publish an updated bundle.

License

MIT © Dan Cox