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

seeemess

v1.0.10

Published

A simple CMS framework built on Eleventy with an admin interface for managing blog content.

Downloads

787

Readme

SeeEmEss

A simple CMS framework built on Eleventy with an admin interface for managing blog content. It is by-design simple.

Features

  • Admin interface for creating and editing posts
  • Image upload with automatic resizing
  • Git-based publishing workflow
  • Configurable content sections
  • Eleventy filters for dates and content formatting

Caveats

This is an opinionated project that is extremely limited. It relies on GitHub. The admin interface has no authentication mechanism, so it can only run locally with changes are published via GitHub actions.

If you think want this SeeEmEssOpen be better, I'm happy to review pull requests.

Installation

npm install seeemess

Usage

1. Set up Eleventy filters

In your eleventy.config.js:

import filters from 'seeemess/filters';

export default function(eleventyConfig) {
  // Add SeeEmEss filters
  filters(eleventyConfig);

  // Your other config...
}

2. Create admin entry point

Create admin/start.js in your project:

import { startAdminServer } from 'seeemess';

startAdminServer({
  sections: [
    { id: 'posts', name: 'Blog Posts', folder: 'posts', tag: 'post' },
    { id: 'news', name: 'News', folder: 'news', tag: 'news' }
  ]
});

3. Add npm script

In your package.json:

{
  "scripts": {
    "admin": "node admin/start.js"
  }
}

4. Run the admin

npm run admin

The admin interface will be available at http://localhost:3000.

Configuration Options

startAdminServer({
  // Required: Define your content sections
  sections: [
    { id: 'posts', name: 'Blog Posts', folder: 'posts', tag: 'post' }
  ],

  // Optional: Override defaults
  cmsRoot: process.cwd(),           // Project root directory
  contentDir: './content/blog',     // Where posts are stored
  publicDir: './public',            // Where images are uploaded
  port: 3000                        // Admin server port
});

Available Filters

When you import seeemess/filters, the following Eleventy filters are added:

  • readableDate - Format dates for display
  • htmlDateString - Format dates for HTML datetime attributes
  • head - Get first N items from array
  • min - Get minimum value
  • getKeys - Get object keys
  • filterTagList - Filter out system tags
  • capitalize - Title case text
  • sortAlphabetically - Sort strings alphabetically
  • thumbSuffix - Add size suffix to image filenames
  • smartQuotes - Convert straight quotes to typographic quotes

Optional: AI Synopsis Generation

The admin interface includes a "Generate Synopsis" button that uses Ollama to automatically generate post summaries.

Requirements:

  1. Install Ollama: https://ollama.ai/download
  2. Pull the llama3 model: ollama pull llama3
  3. Ensure Ollama is running when using the admin

If Ollama is not available, the button will show an error but the rest of the admin works normally.

Project Structure

Your project should have this structure:

your-site/
├── admin/
│   └── start.js          # Admin entry point
├── content/
│   └── blog/             # Your posts (organized by section folders)
├── public/               # Uploaded images
├── _includes/            # Your Eleventy layouts
├── eleventy.config.js
└── package.json

License

MIT