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

exine

v0.1.2

Published

Universal Markdown extraction engine (CLI)

Readme

Exine

Universal Markdown extraction engine for Rust.

37+ formats. Zero external dependencies. 10–96× faster than Pandoc.


Performance

| vs Competitor | HTML Speed | Text Speed | |-----------------|----------------|-----------------| | vs Pandoc | 10–55× faster | 3.6–4.7× faster | | vs Markitdown | 73–96× faster | 77–114× faster | | vs html2text | 8–17× faster | — |

HTML (133 KB): 6.3ms. DOCX (37 KB): 25ms. Text: near-instant.


Supported Formats

PDF, DOCX, PPTX, XLSX, ODT/ODS/ODP, EPUB, RTF, SVG, HTML, EML, MSG, plain text — plus URL fetching and Vision AI escalation for images (Gemini, Claude, OpenAI, Mistral).


Installation

CLI

cargo install exine

Library

[dependencies]
exine = "0.1"

Usage

Library

use exine::extract::extract_by_extension;

let bytes = std::fs::read("report.pdf").unwrap();
let markdown = extract_by_extension("pdf", &bytes).unwrap();

CLI

exine report.pdf                    # Extract to stdout
exine report.pdf -o output.md       # Extract to file
exine https://example.com           # Fetch URL and extract
exine image.png --vision gemini     # Vision AI for images

Findability Shield

Protects content from AI scrapers while allowing search engines.

# Generate robots.txt
exine shield --robots > robots.txt

# Deploy to CDN (S3-compatible) with content
exine shield \
  --robots \
  --s3-bucket my-bucket \
  --s3-region us-east-1 \
  --content-dir ./output

Web Scraping

Stealth scraping with CAPTCHA solving and pagination.

# Crawl with stealth and pagination
exine crawl "https://example.com" --stealth --depth 2

# Crawl with CAPTCHA escalation
exine crawl "https://site.com" --captcha --render

Vision AI (Optional)

For scanned PDFs and images, Exine escalates to Vision AI:

export GEMINI_API_KEY=...
exine scanned.pdf --vision auto     # Auto-selects best available provider

Supported providers: gemini, claude, openai, mistral


Feature Flags

| Flag | Default | Description | |------|---------|-------------| | dashboard | ✅ | Axum web dashboard | | ocr | ❌ | Tesseract OCR (requires libtesseract) | | stt | ❌ | Whisper.cpp STT (requires model file) | | vision | ❌ | Vision AI extraction | | headless | ❌ | Headless Chrome via chromiumoxide |


Contributing

See CONTRIBUTING.md for guidelines.


Built by NMA

Exine powers the FIELD ecosystem (GRID + SCALAR + STRIA) — AI-native tools for European and Israeli startup fundraising. https://nma.vc


License

MIT