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

vale-md-frontmatter

v0.1.0

Published

Lint Markdown Frontmatter with Vale

Readme

Vale Markdown Frontmatter Linter

This tool takes markdown files with frontmatter, extracts the title, description, and summary fields, and creates temporary files.

These temporary files are then passed to Vale for linting. The results are transformed to reference the original file paths instead of the temporary files.

This attempts to keep line numbers the same, and attempts to report the original filenames.

It currently cannot hook directly into Vale, so using it with Vale's LSP or in-editor features won't work. You'll want to run this as a separate process.

Installation

To run this, you'll need:

To install globally, if you have to use this with multiple projects:

npm install -g vale-md-frontmatter

You can also install as a per-project dependency:

npm install vale-md-frontmatter --save-dev

Usage

You can use this as a command-line tool or as a module.

Command Line

The basic usage is:

vale-md-frontmatter [options] <patterns...>

Examples:

# Lint all markdown files in the current directory (default if no pattern provided)
vale-frontmatter

# Lint all markdown files in the docs directory and child directories
vale-md-frontmatter "docs/**/*.md"

# Lint with a custom filter
vale-md-frontmatter --filter=".Name != Microsoft.We" "content/*.md"

# Get help
vale-md-frontmatter --help

Options

  • --filter, -f: Vale filter to apply. Uses the same syntax Vale uses.
  • --verbose, -v: Run with verbose logging
  • --help, -h: Show help

The command-line tool runs Vale directly and forwards its status code back so you can use it in your CI/CD system.

Programmatic Usage

You can also use the package programmatically in your Node.js applications:

const valeFrontmatter = require('vale-frontmatter');

// Lint files matching patterns
const exitCode = valeFrontmatter.lint(['docs/**/*.md'], {
  filter: '.Name != AwesomeCo.Passive'
});

console.log(`Lint finished with exit code: ${exitCode}`);

Changelog

2025-03-26 - 0.1.0

  • Initial version.
  • Tests.

License

MIT