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-privileges

v0.0.4-4

Published

A metalmith plugin to allow several levels of privilege for a static website

Readme

metalsmith-privileges

A plugin to allow several level of privileges for a statis site.

Based on given privileges for each file, it duplicates and filter files to generate several version of the same site. Each non-public file is given a hash in its filename.

Installation

$ npm install metalsmith-privileges

Usage

In the page:

---
title: This page is private
privileges: private
---

You can use different handle to define the level of privileges, by configuring the handle option. privileges is the default.

All the links to local files will be updated to point to the privileged files.

In the build

var privileges = require('metalsmith-privileges');

metalsmith
  .use(privileges({
    // Select only files that match the pattern
    pattern: '*'
    // The handle to specify privileges in the frontmatter
    handle: 'privileges',
    // The default privilege to apply to pages
    defaultPrivilege: 'public',
    // The default key to store privileges in Metadata
    // The files are kept in two structures :
    // - an object named after privilegesKey
    // - an array named privilegesKey + 'Array'
    privilegesKey: 'privileges',
    // Sort the array holding the files
    sortBy = 'date';
    // Reverse the array holding the files
    reverse = false;
    // The default key to generate the hashes
    // /!\ You should specify this value with a unique key
    key: '____';
    // Specify the inclusions between levels
    // /!\ The default value for this option is empty
    includes: {
      // A public post should also appear in the private version, whereas the opposite is false
      'public': ['private'],
      'private': []
    }
    // Baseurl for generating the sitemap
    baseUrl: 'http://localhost:5656',
  }));

In the template

You can gather all the posts from the current privilege, to build an index or a menu.

// An array of all the posts from current privilege
var posts = Object.keys(privileges[privilege]).map(function(name) {
  return privileges[privilege][name];
});