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

vexell

v1.0.3

Published

Blazing fast lossless SVG to image converter

Readme

Vexell

Blazing fast, 100% lossless SVG to Image converter.

Vexell is designed for pixel-perfect graphics. Because SVGs are mathematically scalable vectors, Vexell converts them to perfectly crisp PNGs (and WebP) at massive resolutions without losing a single pixel of quality.

The Interactive Magic Menu

Run Vexell without any arguments to enter the Magic Menu.

██╗   ██╗███████╗██╗  ██╗███████╗██╗     ██╗
██║   ██║██╔════╝╚██╗██╔╝██╔════╝██║     ██║
██║   ██║█████╗   ╚███╔╝ █████╗  ██║     ██║
╚██╗ ██╔╝██╔══╝   ██╔██╗ ██╔══╝  ██║     ██║
 ╚████╔╝ ███████╗██╔╝ ██╗███████╗███████╗███████╗
  ╚═══╝  ╚══════╝╚═╝  ╚═╝╚══════╝╚══════╝╚══════╝

  Blazing fast SVG to Image converter (100% Lossless)

Vexell Main Menu
│
│ 🚀 1 - Standard Conversion (Smart Defaults)
│ 🌌 2 - Purely Lossless Conversion (Massive Resolution & Format)
│ 🎯 3 - Magic Size Targeter (Hit an exact KB file size)
│ 🔄 4 - Universal Format Converter (Change any format instantly)
│ ⚡ Shift+! - Open Zsh Terminal
│ 🚪 /exit - Exit Vexell
│ 📚 /help - Help Menu
╰────────────────────────────────────────────────────────────────────────
╭─[ Select operation (1-4) ]
╰─> 

🔄 Universal Image Support

Vexell is no longer just for SVGs! You can now pass ANY standard image (.png, .jpg, .webp, .bmp, .tiff, .ico, .gif) into Vexell and use the menu options to dynamically resize them, hit exact file sizes, or just cleanly convert them to another format (Option 4). Note: ICO is strictly constrained to 256x256 and will automatically square-pad non-square inputs. GIF is mathematically limited to 8-bit color palettes.

🎯 Option 3: The Magic Size Targeter

Have a strict 1.5 MB upload limit? Need a logo that is exactly 500 KB? Select Option 3, type in 500 KB, and Vexell will automatically binary-search quality thresholds to hit your target file size using lossy compression (WebP/JPEG) while perfectly maintaining 100% of your requested dimensions. No more muddy resolution scaling!

⚡ Built-in Terminal

Press Shift+! at any prompt to jump into Vexell's built-in Zsh terminal to quickly navigate your file system, copy files, and cd without ever leaving the app.


Installation

Via NPM (Node.js)

You can instantly run Vexell via npx without installing it:

npx vexell

Or install it globally:

npm install -g vexell

Via Cargo (Rust)

If you prefer the ultra-fast Rust binary:

cargo install vexell

1. NPM & Node Environment

If you are modifying the JavaScript wrapper or testing NPM deployment locally, the node_modules/ folder is intentionally ignored in Git to prevent repository bloat. To recreate it and install all required JS dependencies, run:

npm install

2. Rust Core Engine Development

Vexell is primarily built in Rust. To work on the core engine locally, you will need to use Cargo.

Run the engine in dev mode:

cargo run

(You can also pass arguments directly: cargo run -- icon.svg output.png)

Run the comprehensive E2E test suite: We have a robust 14-test E2E Python suite that verifies all edge cases, formats, and failure states.

python tests/test_vexell.py

Build for Production (Release): When you are ready to compile the final, optimized binary:

cargo build --release

The blazing-fast compiled executable will be generated at target/release/Vexell.exe.

Direct CLI Usage

You can bypass the interactive menu by passing arguments directly:

vexell <input.svg> <output.png> -W 4000 -O
  • -W, --width <pixels>: Exact width of the output image
  • -H, --height <pixels>: Exact height of the output image
  • -T, --target-size <bytes>: Target exact output file size in bytes (Uses lossy WebP/JPG compression)
  • -f, --format <format>: Output format (png, webp, jpg, bmp, tiff, ico, gif)
  • -O, --optimize: Enable advanced lossless size optimization (Oxipng, extremely slow on massive images)