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

estimator-generator

v1.0.1

Published

Generates an interactive HTML estimator from a structured Markdown file.

Readme

Estimator Generator

npm version License: MIT Node.js Version CI

A Node.js CLI tool that transforms structured Markdown files into interactive HTML estimators for project planning.

Installation

# Install globally
npm install -g estimator-generator

# Or use npx directly
npx estimator-generator <input-file> [options]

Usage

estimator <input-file> [options]

Options

| Option | Description | |--------|-------------| | -o, --output <path> | Custom output file path | | -s, --subtitle <text> | Subtitle for the estimator (default: current date) | | -h, --help | Show help message | | -v, --version | Show version number |

Examples

# Basic usage
estimator project.md

# With subtitle
estimator project.md -s "Q1 2025"

# Custom output path
estimator project.md -o ./output/estimate.html

# Combined options
estimator project.md --subtitle "Sprint 1" --output custom.html

Output: Creates an HTML file (default: <input-filename>-estimator.html) in the same directory as the input file.

Markdown Format

The source Markdown file must follow a specific structure for the parser to work correctly.

1. Document Title

The first H1 header is used as the estimator title.

# Project Name Plan

2. Phases

Phases are defined by H2 headers starting with "Phase".

## Phase 1: Initialization

3. Tasks

Tasks are defined by H3 headers starting with "Task".

### Task 1.1: Setup Repository

4. Story Points

Story points must be bolded and in parentheses. Ranges are supported (averaged).

**Story Points: (3)**
**Story Points: (1-3)**

5. Task Details

The following bold headers are recognized within a task block:

  • **Description:** - Task description (supports Markdown)
  • **Deliverables:** - List of deliverables (supports Markdown)
  • **Acceptance Criteria:** - Checklist or list (supports Markdown)
  • **Dependencies:** - Text or comma-separated list. References to other tasks (e.g., "Task 1.2") are automatically linked
  • **Risk:** - "Low", "Medium", or "High" (optionally followed by text)

Example Task Block

### Task 1.1: Setup Environment

**Story Points: (2)**

**Description:**
Initialize the project repository and configure build tools.

**Deliverables:**
- Repo created
- CI pipeline configured

**Acceptance Criteria:**
- [ ] Build passes
- [ ] Tests run

**Dependencies:** None

**Risk:** Low
---

Note: The --- separator is optional but recommended for readability in the raw Markdown.

Examples

See the examples/ directory for sample Markdown files.

Contributing

Contributions are welcome! Please read our Contributing Guide for details.

Code of Conduct

This project follows a Code of Conduct. By participating, you are expected to uphold this code.

License

MIT