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

cmg

v0.1.0

Published

Modern CLI tool for image conversion and optimization

Readme

CMG (Convert My Graphics)

A modern CLI tool for batch image conversion and optimization. Easily convert and optimize multiple images at once while maintaining your directory structure.

Features

  • 🖼️ Convert between multiple image formats (JPEG, PNG, WebP, GIF, TIFF, BMP)
  • ⚡ Optimize images for web and storage
  • 📏 Resize images with web-friendly presets
  • 📁 Process entire directories recursively
  • 🎯 Smart output directory handling
  • 🔒 Windows Defender compatibility
  • 🌐 Cross-platform support (Windows, macOS, Linux)

Installation

Global Installation (Recommended)

npm install -g .

Using npx (No installation required)

npx cmg

Usage

Basic usage:

cmg

This will start an interactive prompt asking for:

  • Output format (JPEG, PNG, WebP)
  • Image quality with presets:
    • Maximum (100) - Lossless
    • High (90) - Photos
    • Medium (80) - Web optimal
    • Low (60) - Small file size
    • Custom quality...
  • Image width with common web sizes:
    • Original size
    • Large (1920px) - Desktop
    • Medium (1280px) - Tablet
    • Small (768px) - Mobile
    • Thumbnail (320px)
    • Custom size...
  • Output directory
  • Whether to process subdirectories

Command Line Options

cmg [options]

Options:
  -f, --format <type>     output format (jpeg, png, webp) (default: "webp")
  -q, --quality <number>  output quality (1-100) (default: "80")
  -w, --width <pixels>    resize image width maintaining aspect ratio
  -o, --output <dir>      output directory for converted images
  -r, --recursive         process images in subdirectories
  -h, --help             display help for command

Examples

Convert all images in current directory to WebP with interactive options:

cmg

Convert to JPEG with 90% quality:

cmg -f jpeg -q 90

Convert and resize images to desktop size (1920px):

cmg -w 1920

Process all images including subdirectories:

cmg -r

Specify output directory:

cmg -o ./converted

Supported Image Formats

  • JPEG/JPG
  • PNG
  • WebP (recommended for web)
  • GIF
  • TIFF
  • BMP

Default Directories

Windows

Default output directory: C:\CMGOutput

macOS/Linux

Default output directory: ~/CMGOutput

Windows Security Note

If you're using Windows with Controlled Folder Access enabled (Windows Defender), the tool will:

  1. Detect protected folders automatically
  2. Suggest safe alternative directories
  3. Guide you through the permission process if needed

Error Handling

The tool provides clear error messages for common issues:

  • Permission denied
  • Invalid directories
  • Conversion failures
  • Unsupported formats

Requirements

  • Node.js 14.0 or higher
  • NPM or yarn package manager

Dependencies

  • sharp: Image processing
  • commander: CLI interface
  • inquirer: Interactive prompts
  • cli-progress: Progress bars
  • chalk: Colored output

License

MIT

Project Structure

imagino/
├── lib/
│   ├── converter.js  # Image conversion logic
│   └── prompts.js    # Interactive prompts
├── index.js          # CLI entry point
├── package.json      # Project configuration
└── README.md         # Documentation

Development

If you want to develop or modify the tool:

# Install dependencies
npm install

# Run locally
npm start

#� �c�m�g� � �