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

llmdump

v1.1.1

Published

Automatically crawl documentation, clean up extra markup, and write to markdown for use with LLMs

Downloads

3

Readme

💩 LLMDump

Automatically crawl documentation, clean up extra markup, and write to markdown for use with LLMs

🚀 Features

  • 🔍 Crawl documentation sites with configurable depth
  • 🧹 AI Clean up of extra markup and formatting (optional)
  • 📚 Automatically categorizes content for better splitting into token friendly chunks
  • 📝 Export raw or AI cleaned markdown files
  • 🔄 Interactive document pruning and category splitting
  • 📊 Token estimation for LLM context windows

📦 Installation

npm install -g llmdump

🔑 Setup

You'll need two API keys:

  1. Firecrawl API key for web crawling
  2. OpenAI API key for content processing

Set them as environment variables or provide them via CLI:

export FIRECRAWL_API_KEY="your-firecrawl-key"
export OPENAI_API_KEY="your-openai-key"

Or use CLI flags:

llmdump --firecrawl-key "your-key" --openai-key "your-key"

🎯 Usage

Main Menu

When you run llmdump, you'll see the main menu with these options:

┌─────────────────┐
│     LLMDump     │
│ v[current-ver]  │
└─────────────────┘

? What would you like to do?
❯ Start new crawl
  Open existing crawl
  Delete crawl
  Manage configuration
  Exit

Start New Crawl

  1. Enter the URL to crawl
  2. Set the maximum number of pages to crawl (default: 50)
  3. Wait for crawling and AI processing to complete
  4. View the processing menu

Processing Menu

After crawling, you'll see a summary of documents and categories, then:

? What would you like to do?
❯ View/prune documents (In case we crawled some junk)
  Export & clean documents
  Export raw documents (No AI cleanup, faster)
  Back to Main Menu

Document Management

When viewing documents, you can:

  • Navigate between categories
  • Prune documents (remove unwanted content)
  • Split categories using AI
  • View token estimates for each category

Export Options

When exporting, choose between:

  1. Single file (all content in one markdown file)
  2. Multiple files (one file per category)

The tool will show token estimates for each option to help you choose.

Configuration Management

Access configuration settings to:

  • Update Firecrawl API key
  • Update OpenAI API key
  • Open config directory
  • Return to main menu

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

📄 License

MIT