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

@barnemax/bandcamp-types

v0.1.5

Published

TypeScript types for Bandcamp's internal DOM structures, page data blobs, and collection APIs.

Readme

@barnemax/bandcamp-types

TypeScript types for Bandcamp's internal DOM structures, page data blobs, and collection APIs.

Installation

npm install -D @barnemax/bandcamp-types
# or
pnpm add -D @barnemax/bandcamp-types

Page blob

Bandcamp embeds a JSON blob in #pagedata[data-blob] on every page. The shape varies by page type — modelled here as a discriminated union.

import type { PageBlob } from '@barnemax/bandcamp-types'
import { SEL_PAGE_BLOB } from '@barnemax/bandcamp-types'

const el = document.querySelector(SEL_PAGE_BLOB)
const blob: PageBlob = JSON.parse(el!.getAttribute('data-blob')!)

Narrowing with guards

import { isCollectionPage, isTralbumPage, isDownloadPage } from '@barnemax/bandcamp-types'

if (isCollectionPage(blob)) {
  // blob is CollectionPageBlob
  console.log(blob.fan_data.username)
} else if (isTralbumPage(blob)) {
  // blob is TralbumPageBlob
  // album if blob.track_id is absent, track if present
  console.log(blob.fan_tralbum_data.is_purchased)
} else if (isDownloadPage(blob)) {
  // blob is DownloadPageBlob
  console.log(blob.download_items)
}

The guards also accept unknown, so they work directly on a freshly parsed value without an intermediate cast.

LoosePageBlob — skip narrowing

A flat optional merge of all three variants. Every field is optional, so accesses are safe without committing to a specific page type. Useful for quick ad-hoc access when the page type is genuinely unknown.

import type { LoosePageBlob } from '@barnemax/bandcamp-types'

const blob = JSON.parse(el!.getAttribute('data-blob')!) as LoosePageBlob

const username = blob.fan_data?.username
const isPurchased = blob.fan_tralbum_data?.is_purchased
const downloads = blob.download_items

Other exports

| Export | Description | |---|---| | ReleaseLdJson | script[type="application/ld+json"] on release pages (schema.org MusicAlbum / MusicRecording) | | TralbumTrackInfo | Track data from the data-tralbum attribute or Tralbum API | | CollectorsBlob, BandcampCollectionItem, etc. | Collection API response shapes | | BANDCAMP_COLLECTION_URL | https://bandcamp.com/api/fancollection/1/collection_items | | BANDCAMP_COLLECTORS_URL | https://bandcamp.com/api/tralbumcollectors/1/thumbs | | SEL_PAGE_BLOB, SEL_LD_JSON, etc. | DOM selectors |

Notes

Types are reverse-engineered from Bandcamp's live DOM — Bandcamp can change them without notice.

These types are intentionally partial: only properties useful to a consuming project are included. Internal Bandcamp fields (rendering hints, A/B flags, payment config, CAPTCHA keys, etc.) are omitted even when present in the real blob. If you need a field that isn't typed, open an issue or add it directly.