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

mikser-io

v6.21.2

Published

<p align="center"> <img src="mikser-lockup-stacked.svg" alt="mikser" width="198" /> </p>

Readme

Mikser Documentation

Mikser is a precision content engine for Node.js — built around a strict lifecycle, a composable plugin system, and zero compromise on output control. Every document, asset, and template flows through the same deterministic pipeline. Plugins hook in at any phase; nothing runs outside the cycle. The result is a system that scales from a single markdown blog to a multi-language, multi-format publishing platform — without ever losing sight of what it produced and why.

Documentation Index

| Document | Audience | Description | | ----------------------------------------------------- | ------------------ | -------------------------------------------------- | | Getting Started | Users | Installation, first project, basic usage | | Configuration | Users | All CLI options and config file reference | | Lifecycle | Users & Developers | Complete lifecycle phases and hook system | | Plugins | Users & Developers | Built-in plugins, writing custom plugins | | Entities | Users & Developers | Entity model, operations, journal, catalog | | Rendering | Users & Developers | Render pipeline, render plugins, render modes | | Watch Mode | Users | File watching, scheduled tasks, incremental builds | | Architecture | Developers | System design, module structure, extension points | | API Reference | Developers | Complete public API reference |

Quick Start

npm install mikser-io
// mikser.config.js
export default {
	plugins: ['documents', 'layouts'],
	layouts: {
		cleanUrls: true,
	},
}
npx mikser

Core Concepts

  • Lifecycle — Processing runs through fixed phases: initialize → load → import → process → persist → render → finalize. Plugins hook into any phase.
  • Entities — Everything is an entity (document, file, layout, asset). Entities flow through the journal and are tracked in the catalog.
  • Plugins — Functionality is delivered via plugins. Built-in plugins handle common sources (documents, files, layouts, assets). Custom plugins can be added to any project.
  • Runtime Singleton — A plain module-level object holds all global state and coordinates the lifecycle. The ES module cache guarantees every importer gets the same instance.
  • Watch Mode — In watch mode, file changes trigger incremental re-processing without restarting.