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

markdown-utilities

v0.1.1

Published

A collection of small handy tools for improving and converting markdown

Readme

markdown-utilities

A collection of small handy tools for improving and converting markdown.

Install

    $ npm install -g markdown-utilities

Utilities

markdown-github-toc

Add Github compatible table of content to markdown (Replacing "<!-- toc -->" in source file)

This tools uses markdown-toc internally.

CLI

    Usage:
        $ markdown-github-toc <source> [<destination>] [<options>]

    <source> must be a markdown file, with the extension '.md'.
    <destination> must be a markdown file, with the extension '.md'
                  if ommitted it will be named <source>-toc.md


    Examples:
            $ markdown-github-toc README.md
            $ markdown-github-toc in.md out.md --maxdepth 3
            $ markdown-github-toc README.md --insert

    Options:
        --help                       Display this menu
        --insert                     Use source markdown as destination
        --maxdepth=<depth>           Use headings whose depth is at most maxdepth (default: 6)
        --version                    Display the application version

markdown-to-pdf

Convert markdown to PDF (and also HTML) with optional table of content.

Inspired by MDPDF and markdown-pdf. With the improvement that you can generate a table of content (ToC) using markdown-toc, and the ToC document links works correctly in the PDF even if non-latin-letter like åäö are used. Another improvement that is made compared to MDPDF is that the intermediate temporary HTML is never stored as a file unless you want it to be saved. If you choose to store the HTML it is minified before stored to disk.

CLI

  Usage:
      $ markdown-to-pdf <source> [<destination>] [<options>]

  <source> must be a markdown file, with the extension '.md'.
  <destination> must be a PDF file, with the extension '.pdf'
                if ommitted it will be named <source>.pdf


  Examples:
          $ markdown-to-pdf README.md
          $ markdown-to-pdf in.md out.pdf --toc
          $ markdown-to-pdf in.md out.pdf --toc --save-html out.html

  Options:
      --border=<size>         Border (top, left, bottom, right; default: 20mm)
      --border-top=<size>     Top border (default: 20mm)
      --border-left=<size>    Left border (default: 20mm)
      --border-bottom=<size>  Bottom border (default: 20mm)
      --border-right=<size>   Right border (default: 20mm)
      --format=<format>       PDF size format: A0-A6, Legal, Ledger, Letter, Tabloid (Default: A4)

      --toc                   Add table of content where a "toc" html comment is.
      --maxdepth=<depth>      TOC: Use headings whose depth is at most maxdepth (default: 6)

      --save-html=<file>      Save intermediate HTML to file. if no filename is given use <source>.pdf

      --help                  Display this menu
      --version               Display the application version