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

gunnlod

v0.0.2

Published

Gunnlöð =======

Readme

Gunnlöð

Gunnlod is a slick interface to edit a folder of markdown files.

  • The preview is an actual for real life preview. Its in an iframe with your own stylesheets.

  • You can also provide a custom template for the preview to add any extra stuff that your website adds around your content to make the preview even more accurate.

  • It just takes a folder of markdown files, so you can use it with any static site builder, it has nothing to do with the build.

In other words, its everything you've always wanted in a guardian goddes of your mead of poetry.

demo

Installation

npm install gunnlod -g

Command Line Usage

  1. Make a gunnlod.js in the directory you want to run gunnlod.

  2. Export some stuff:

    // the directory to find the articles in, relative to the
    // `process.pwd()`.
    exports.srcDirectory = 'path/to/articles';
    
    // these will be used in the preview
    exports.stylesheets = [
      'something.css',
      'http://example.com/whatever.css'
    ];
    
    // Optional, this will be the output in the preview, its built with
    // React so ... welcome to React!
    exports.template = function(React, meta, content) {
      // meta contains the header meta of your markdown file
      // content is the html.
      return React.DOM.div({className: 'container'}, [
        React.DOM.h1(null, meta.title),
        React.DOM.div(null, React.DOM.time(null, meta.pubdate)),
        React.DOM.hr(),
        // this part is really important, do it like this
        React.DOM.div({dangerouslySetInnerHTML: {__html: content}})
      ]);
    };
  3. Run it! $ gunnlod or $ gunnlod <port>

Programmatic Usage

Set up your own gunnlod server:

var gunnlod = require('gunnlod');
gunnlod.set('config', {
  // same as gunnlod.js config file from cli usage
  srcDirectory: '',
  stylesheets: [],
  template: function() {}
});
gunnlod.listen(3000);

Markdown Support

This uses meta-marked, which means you can have metadata in the head of the file.

---
title: foo
pubdate: 2014-05-20
---

Here is the content

License and Copyright

Copyright 2014 Ryan Florence MIT Style license