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

@easy-mark/cli

v1.0.3

Published

Lightweight CLI to compile, sanitise, preview, and export Markdown directories as HTML and PDFs.

Downloads

21

Readme

Easy Mark

Easy Mark is a command-line tool for turning a folder of Markdown files into a clean local documentation site, then exporting the same content to PDF when you need a shareable document.

It is designed for project notes, product docs, team handbooks, technical guides, and any content set where Markdown must become something easy to browse.

What It Does

  • Serves Markdown as a website: point Easy Mark at a directory and it opens the content through a local single-page app.
  • Builds navigation automatically: nested Markdown files become a structured menu.
  • Keeps output clean: rendered HTML is sanitised before it is shown.
  • Supports visuals: Mermaid diagrams and Chart.js charts work directly from fenced Markdown blocks.
  • Exports to PDF: create a complete PDF from the same Markdown source.
  • Works locally: runtime assets are served same-origin, without depending on external CDNs.

Installation

Install it in a project:

npm install @easy-mark/cli mermaid chart.js

Then run it through npx:

npx easy-mark serve ./docs

Or install it globally if you want the easy-mark command available everywhere:

npm install --global @easy-mark/cli mermaid chart.js

Quick Start

Create a folder with Markdown files:

docs/
  README.md
  guides/
    setup.md
    release.md

Preview it locally:

easy-mark serve ./docs

Use a custom title:

easy-mark serve ./docs --title "Team Handbook"

Export it to PDF:

easy-mark export ./docs --pdf ./team-handbook.pdf

Project Metadata

You can add an optional manifest.json file to the content directory:

{
  "title": "Team Handbook",
  "logo": "/logo.svg"
}

The title is resolved in this order:

  1. manifest.json
  2. --title
  3. Easy Mark

Diagrams

Mermaid diagrams are supported with mermaid fences:

```mermaid
flowchart TD
  Draft[Write Markdown] --> Preview[Preview locally]
  Preview --> Export[Export PDF]
```

Charts

Charts are supported with JSON chart fences:

```chart
{
  "type": "line",
  "title": "Pages reviewed",
  "data": {
    "labels": ["Mon", "Tue", "Wed", "Thu", "Fri"],
    "datasets": [
      {
        "label": "Pages",
        "data": [4, 7, 11, 13, 18]
      }
    ]
  }
}
```

Supported chart types are bar, line, pie, doughnut, donut, polarArea, radar, bubble, and scatter. donut is accepted as an alias for Chart.js doughnut.

Demo

This repository includes a demo/ directory with a Mermaid flowchart, a line chart, and a pie chart.

From a repository checkout, run:

node bin/easy-mark.mjs serve ./demo

After installing the package, the same content can be served with:

easy-mark serve ./demo

Requirements

Easy Mark requires Node.js 22 or later.

PDF export requires a Playwright-compatible Chromium environment.