photo-compressor v1.0.0
photo-compressor
photo-compressor CLI is a command-line tool to optimize and compress images locally or from the cloud. This tool leverages sharp to perform image compression and conversion to .webp
format. It's a great utility for web developers to convert their media to .webp
and compress them to serve easily to their end users.
Features
Optimize images in a local directory
Optimize images from a URL or a directory of image URLs
Automatically handles file name conflicts
Provides detailed logging with statistics on savings and processing time
Installation
Install the CLI globally using npm:
npm install -g photo-compressor
or use yarn
yarn global add photo-compressor
or use npx to run it without installation
npx photo-compressor
Usage
Below are the available commands and options for the Photo Compressor CLI.
Common Options
-h, --help
: Display help information for a command.-V, --version
: Output the current version of the package.
Commands
photo-compressor local
Description: Optimize and compress images in a local directory.
Usage:
photo-compressor local --dir <path_to_directory> --output <path_to_output_directory>
Options:
-d, --dir <path>
: Directory to scan for images (Required).-o, --output <path>
: Output directory for optimized images, default is./optimized
.
photo-compressor cloud
Description: Optimize and compress images from a URL or a directory URL.
Usage:
photo-compressor cloud --url <image_url_OR_array_of_images> --output <path_to_output_directory>
Options:
-u, --url <url>
: URL of the image or an array of image URLs to compress (Required).-o, --output <path>
: Output directory for optimized images, default is./optimized
.
Notes:
--url
option can take a single image URL or an array of image URLs for batch processing.
Examples
Optimize Local Images
photo-compressor local --dir ./images --output ./optimized
Optimize Cloud Images
photo-compressor cloud --url ['https://example.com/image.jpg','https://example.com/image_2.jpg'] --output ./optimized
Contributing
We welcome contributions to enhance the functionality of Photo Compressor CLI! Here are some guidelines:
Fork the repository.
Create a new branch with a descriptive name (e.g.,
feature-add-optimization
).Make your changes and commit them with clear and concise messages.
Raise a pull request against the
main
branch. Include a detailed description of your changes and the problem you're addressing.Wait for the maintainers to review your pull request. Engage actively in any feedback and make necessary updates.
Thank you for your contributions!
Issues
If you encounter any issues or bugs or have feature requests, please open an issue in the Issues section of the repository. When reporting an issue, please provide as much detail as possible, including:
Steps to reproduce the issue
Expected and actual behavior
Relevant logs or error messages
Screenshots (if applicable)
We appreciate your feedback and will strive to address issues promptly!
License
This project is licensed under the MIT License. See the LICENSE file for details.
Hire Me
Hey there! I'm currently open to new opportunities and would love to work on exciting projects. If you're interested in collaborating or hiring me, feel free to reach out via email or connect with me on LinkedIn
Let's create something amazing together! 🚀
Notes
This is yet another wrapper around sharp. Further optimizations will be added down the road, but it is a good utility to convert and optimize a bunch of images hassle-free.
I was watching Silicon Valley and wanted to build something related to compression. (P.S. I'm a noob)
This is a good utility tool for web developers to compress and convert a bunch of images to
.webp
.
6 months ago