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

sub2mark-site

v1.0.0

Published

Generate a static site from a Substack publication using sub2mark-lib.

Readme

sub2mark-site

sub2mark-site generates a static site from a Substack publication using sub2mark-lib.

This tool pulls posts from the Substack RSS feed (falling back to the homepage if needed), converts each post to Markdown, and renders a lightweight static site with a homepage, per-post pages, and an About page. It also downloads the publication favicon and ships it along with some basic styling css and javascript in the generated assets/ folder.

Install

npm install sub2mark-site

Library Usage

import { buildSubstackSite } from 'sub2mark-site';

await buildSubstackSite('https://example.substack.com', {
  outputDir: './site',
  limit: 50,
  update: false
});

Options

  • outputDir (string): Output directory for the generated site (default: ./site)
  • limit (number): Limit the number of posts processed
  • update (boolean): Only add new posts and leave existing posts/assets unchanged

CLI Usage

sub2mark-site https://example.substack.com --out ./site --limit 50

Update mode (incremental):

sub2mark-site https://example.substack.com --out ./site --update

Output

The generated folder is a static site with:

  • index.html homepage listing posts
  • about/index.html built from the Substack About page
  • posts/<slug>/index.html per-post pages with rendered Markdown
  • posts/<slug>/post.md the original Markdown
  • assets/ shared CSS/JS (dark mode toggle + TOC) plus favicon.*

The site/ folder can be hosted on GitHub Pages, Vercel, Cloudflare Pages, or any static host. It is, as said earlier, static and has no backend.

Note: Works only for free (i.e. non-paywalled) posts currently. For paywalled-posts, only the non-paywalled part is converted to markdown and to html, however small that part maybe.

Update Mode

When update/--update is enabled, the generator runs in incremental mode:

  • It only adds brand-new posts that are not already present in posts/.
  • It does not regenerate or modify existing post folders.
  • It does not rewrite index.html or the about/ page.
  • It does not overwrite assets/ (including the favicon).
  • If no new posts are found, it logs No new posts found..

Requirements

  • Node.js 18+