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

pinmark

v0.1.0

Published

Mirror Pinboard bookmarks into an Obsidian vault, enriched with extracted page content.

Downloads

355

Readme

pinmark

Mirror your Pinboard bookmarks into an Obsidian vault, enriched with extracted page content.

One-way sync: Pinboard is the source of truth. The vault is a derived, regenerable artifact suitable for hourly cron-driven updates from GitHub Actions.

What it does

For each bookmark, pinmark writes a markdown file with:

  • Frontmatter carrying the Pinboard data (URL, title, tags, note, timestamps) plus metadata extracted from the page (author, publication date, site name, language, reading time).
  • Body containing the page's main article content, extracted via Defuddle (the engine behind Obsidian's Web Clipper) and converted to markdown.

JavaScript-rendered pages are detected when Defuddle returns little to no content from a plain HTTP fetch — the URL is then re-fetched through a headless Chromium and re-extracted.

The frontmatter schema uses flat, properly-typed YAML so it works natively with Obsidian Bases.

Requirements

  • Node.js 20 or newer
  • A Pinboard API token (find yours at https://pinboard.in/settings/password)
  • Chromium available on $PATH (or installed via npx playwright install chromium)

Install

npm install -g pinmark

Or run on-demand:

npx pinmark sync

Configure

Create a .pinmark.config.json in the vault repo root:

{
  "vault": ".",
  "fetch": {
    "concurrency": 4,
    "perHostConcurrency": 1,
    "timeoutMs": 30000,
    "userAgent": "pinmark/0.1 (+https://github.com/youruser/pinmark)"
  },
  "extraction": {
    "minWordCount": 100,
    "headlessAllowlist": ["twitter.com", "x.com", "medium.com"]
  },
  "retry": {
    "maxAttempts": 5,
    "initialDelayMs": 30000
  }
}

Configuration precedence (highest wins):

  1. CLI flag (--vault ./other-vault)
  2. Environment variable (PINMARK_VAULT=./other-vault)
  3. Config file
  4. Built-in default

PINBOARD_API_TOKEN is environment-only. It is intentionally not loadable from the config file so it cannot be committed by accident.

Run

PINBOARD_API_TOKEN=user:NNNNNNNNNNNN npx pinmark sync

The command exits with non-zero status only on hard failures (config error, Pinboard 401, etc.). Per-bookmark fetch failures are recorded in the markdown file's frontmatter and retried on subsequent runs, with give-up after retry.maxAttempts.

A summary is printed at the end:

pinmark sync — 42 new, 3 metadata updated, 1 deleted
  fetch: 41 ok (38 http, 3 headless), 1 failed (1 timeout), 0 abandoned

Deploy to GitHub Actions

See examples/github-actions-vault.yml for a reference hourly workflow.

The example:

  • Schedules pinmark sync hourly via cron
  • Queues overlapping runs (does not cancel in-progress)
  • Caches node_modules and Playwright's Chromium between runs
  • Commits and pushes resulting changes directly to main with the github-actions[bot] identity

Required secret: PINBOARD_API_TOKEN.

Vault layout

By default, the vault root is the current working directory — i.e. running pinmark sync inside the vault repo writes bookmark files alongside .pinmark.config.json. Override with --vault <path> / PINMARK_VAULT / config vault key.

./
  awesome-article-5d41402a.md
  another-thing-7c8b9e10.md
  ...
  .pinmark/
    state.json          # global state (last Pinboard sync timestamp)
  .pinmark.config.json

Markdown files are flat (no nested folders). Tag-based navigation uses Obsidian's tag pane / Bases over the frontmatter tags field — see docs/frontmatter.md for the schema.

Status

Early. The current 0.0.x releases are pre-API-stable; the frontmatter schema may evolve. Once tagged 1.0.0, the schema and CLI contract are stable.

License

MIT