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

fylzap

v1.2.6

Published

Convert files from your terminal — PDF, DOCX, Markdown, LaTeX, images and more

Readme

fylzap

Convert files from your terminal — PDF, DOCX, images and more.

Install

npm install -g fylzap
# or run without installing:
npx fylzap document.pdf

Setup

Get your API key from fylzap.com/dashboard, then:

fylzap config --key fc_live_your_key_here

Usage

```bash

Convert PDF to Markdown

fylzap document.pdf

Specify output format

fylzap document.pdf --output txt

Convert image with OCR

fylzap scan.png --output txt --language eng

Save to specific directory

fylzap document.pdf --out-dir ./output

Use AI mode for better PDF quality

fylzap document.pdf --ai

AI Clean post-processing pass

fylzap document.pdf --output md --clean

Split into chapters

fylzap document.pdf --output md --chapters

Generate a full AI-ready Knowledge Pack

fylzap document.pdf --knowledge

Batch Knowledge Pack (Enterprise plan)

fylzap doc1.pdf doc2.pdf doc3.docx --knowledge

Return immediately without waiting for completion

fylzap document.pdf --ai --async fylzap status fylzap download

Multiple files

fylzap *.pdf --output md --out-dir ./converted

One-time key (without saving)

fylzap document.pdf --key fc_live_xxx ```

Large files and AI/Knowledge Pack conversions are uploaded directly to avoid request size limits — this happens automatically, no extra flags needed.

Supported Formats

| Input | Output | |-------|--------| | PDF | Markdown, Text, JSON, PNG, JPG | | Word (DOCX) | Markdown, Text | | Markdown (MD) | PDF, EPUB | | LaTeX (.tex) | PDF | | CSV | JSON | | JSON | CSV | | OpenAPI/YAML | Markdown | | Images (JPG, PNG, WEBP, etc.) | Text (OCR) |

Knowledge Pack (--knowledge) supports PDF, DOCX, and Markdown input and produces a ZIP with README, metadata, TOC, summary, chunks, chapters, and images.

Commands

| Command | Description | |---------|-------------| | fylzap <file...> | Convert one or more files | | fylzap config --key <key> | Save API key | | fylzap config --url <url> | Set a custom API URL (self-hosted) | | fylzap config --show | Show current config | | fylzap config --clear | Clear all saved config | | fylzap formats | List supported formats and flags | | fylzap status <jobId> | Check a queued job's status | | fylzap download <jobId> | Download a completed job's result |

Environment Variables

FYLZAP_API_KEY=fc_live_xxx   # API key
FYLZAP_API_URL=https://...   # Custom API URL