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

@fileconverter/core

v1.3.2

Published

Universal file conversion CLI and library — images, documents, PDFs, and OCR with pure npm packages

Downloads

539

Readme

@fileconverter/core

npm version License: MIT

A fast, zero-config file conversion CLI. Images, documents, office files, PDFs, and OCR — all powered by pure npm packages with no external system dependencies.

Install

# Run directly (no install needed)
npx @fileconverter/core convert -i photo.png -o output/ --to jpg

# Or install globally
npm i -g @fileconverter/core

Usage

# Convert an image
converter convert -i photo.png -o output/ --to jpg

# Word to PDF
converter convert -i report.docx -o output/ --to pdf

# Excel to HTML
converter convert -i data.xlsx -o output/ --to html

# PowerPoint to text
converter convert -i slides.pptx -o output/ --to txt

# Batch convert a folder of PNGs to WebP
converter convert -i screenshots/ -o optimized/ --to webp --quality 85 -r

# Markdown to PDF
converter convert -i README.md -o output/ --to pdf

# Merge PDFs
converter pdf --merge a.pdf b.pdf c.pdf -o merged.pdf

# Split specific pages from a PDF
converter pdf --split thesis.pdf --pages 1-5,10 -o excerpt.pdf

# OCR: extract text from an image
converter ocr -i scan.png -o result.txt --lang eng

Supported Formats

| Category | Input | Output | |----------|-------|--------| | Images | PNG, JPG, JPEG, WebP, TIFF, BMP, GIF, HEIC | JPG, PNG, WebP, TIFF | | Office | DOCX, XLSX, PPTX, ODT, RTF | PDF, HTML, TXT, Markdown | | Documents | Markdown, HTML, TXT | PDF, HTML, Markdown, TXT | | PDF | PDF | PDF (merge, split, optimize) | | OCR | PNG, JPG, TIFF, BMP, WebP | TXT |

Commands

convert — File conversion

converter convert -i <input> -o <output> --to <format> [options]

| Option | Description | |--------|-------------| | -i, --in <path> | Input file or folder | | -o, --out <path> | Output folder | | -t, --to <format> | Target format (e.g. png, pdf, html) | | -r, --recursive | Search subfolders recursively | | --dry-run | Preview without converting | | --concurrency <n> | Parallel jobs (default: 1) | | --retries <n> | Retry attempts per job (default: 2) | | --quality <1-100> | Image quality | | --max-width <px> | Maximum image width | | --max-height <px> | Maximum image height | | --strip-metadata | Remove image metadata | | --preset <name> | Use a preset (e.g. image/web) |

pdf — PDF operations

converter pdf --compress <file> -o <output>
converter pdf --merge <files...> -o <output>
converter pdf --split <file> --pages <range> -o <output>

ocr — Text extraction

converter ocr -i <image> -o <output.txt> [--lang <language>]

Presets

| Preset | Quality | Max Size | Strip Metadata | |--------|---------|----------|----------------| | image/web | 85 | 1920x1080 | Yes | | image/print | 95 | 3000x3000 | No | | image/thumbnail | 80 | 300x300 | Yes | | image/social | 90 | 1200x1200 | Yes | | image/original | 100 | — | No |

Requirements

  • Node.js >= 18
  • No external system programs required

License

MIT — see LICENSE