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

smirky

v1.0.5

Published

A tiny, theme-friendly static website generator powered by Markdown.

Readme

Smirky — Minimalist Static Website Generator

I am a big fan of using the classic text editor VIM and using Markdown for writing plain text for technical writing but using some of the static website generators out there I found them to be unnecessarily overly complicated I just wanted a simple way for taking markdown files and coverting that content into a static website a.k.a made of just normal HTML pages. Just like HTML is so simple for creating a web document, markdown is so simple for creating the content from plain text and i didnt want to spend time fighting with the static website generator itself, creating themes and trying to figure out. What does what,and where verthing lives. Most Static website generators haave too many damm features, and config files I need to wrestle with. Too that ened. Thats why I created Smirky

Smirky is a minimalist static website generator for people who just want to write Markdown and get a website — no ceremony, no plugins, no magic.

It is perfect for building blogs, landing pages, or any static site quickly.Its open source you can download the code and improve on it. Creating a static website from markdown should not be rocket science. Smirky keeps with the Kiss principle. Keep It Simple Stupid!


Why Smirky?

  • Write Markdown and get a website
  • Supports tags in Markdown posts
  • Minimal templates with header, navbar, footer, and content
  • Blog posts and tag pages generated automatically
  • Assets copied automatically
  • No complex configuration
  • Works with Fabform.io for contact forms

Features

  • Simple Markdown pages (pages/)
  • Blog posts (content/) with tags
  • Tag pages (/tags/) and blog index (/blog/)
  • Clean templates and partials (theme/)
  • Static assets copied automatically (theme/assets/)
  • Contact forms via Fabform.io
  • Generates everything in dist/ for deployment

Getting Started

  1. Install Smirky globally or as a dev dependency:
# global installation
npm install -g smirky

# or as a dev dependency in your project
npm install --save-dev smirky
  1. Your project structure looks like this:
my-site/
├── pages/          # Static pages in Markdown
├── content/        # Blog posts in Markdown
├── theme/          # Optional: custom templates, partials, assets
└── package.json

How Themes Work

Smirky uses templates and partials to assemble your pages:

  • layout.html — main wrapper
  • index.html — home page
  • page.html — static pages
  • post.html — individual blog posts
  • blog.html — blog index and tag pages
  • tags.html — tag index

Partials are reusable components:

  • head.html — meta tags, CSS
  • navbar.html — navigation bar
  • footer.html — footer content
  • blog_post_card.html — blog summary card
  • tag_pill.html — tag label

Smirky works with Fabform.io for contact forms without a backend.

Example Contact Form:

<form
  action="https://fabform.io/f/FORM_ID"
  method="POST"
>
  <input type="text" name="name" placeholder="Your name" required />
  <input type="email" name="email" placeholder="Your email" required />
  <textarea name="message" placeholder="Your message"></textarea>
  <button type="submit">Send</button>
</form>
  • Replace FORM_ID with your Fabform ID
  • Works directly on your static site
  • No server, no backend

Visit Fabform.io


Deployment

After running npm run build, deploy the dist/ folder to any static host:


Philosophy

Smirky is for people who want simple static sites. No plugins, no hidden configs, no ceremony.

Write Markdown, run Smirky, done.