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

metalsmith-seo-checker

v0.0.3

Published

Metalsmith plugin that does some SEO validation on content files.

Readme

metalsmith-seo-checker

This plugin provides a simple way to ensure that front matter values regarding SEO are valid.

You can provide defaults for SEO parameters, or mark them as required by setting them to true. This should be combined with something in your templating language that places these values where they belong. An example header that uses handlebars templating can be seen at /examples/seo-header.html

This plugin manipulates values within an seo object inside of your front-matter, with one exception. The one exception is the title property which is expected to be set on the base front matter object.

SEO Checker will also check for a private flag on the front matter. If this flag is found and there is no seo.robots provided seo.robots will be set to 'noindex, nofollow'.

With this set of options:

{
    ignoreFiles: ['special.html'],
    trailingSlash: true, // Append a trailing slash to the canonical url
    lengths: {
        title: 60, // This is the default value
        description: 160 // This is the default value
    },
    seo: {
        title: true, // This is the default value
        description: 'Foo Bar Baz', // There is no default for this
        robots: 'index, follow' // This is the default value
    },
    ogp: {
        defaultType: 'website', // This is the default value
        defaultImage: 'www.example.org/myImage.png', // The default value for this is false
        ignoreMissingImage: false // This is the default value
    }
}

The lengths block sets up max string length checks on different fields. The seo block defines which fields are required, or have a default value. Finally the ogp block defines attribute checks that are specific to the Open Graph Protocol.

In english this config block is ensuring that we have a title on the base front matter and that it is no longer than 60 characters. We then provide a default description of 'Foo Bar Baz' and ensure that all seo.descriptions are less than 160 characters. We are also ensuring that any page without a seo.robots field defined will have 'index, follow' set. Finally the ogp config ensures that for any page that has no seo.ogp.type we set the type to 'website', and for any page without an image we can provide a default image. The ignoreMissingImage config determines how the plugin will react to there being no seo.ogp.image (after applying the default image provided).