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 🙏

© 2024 – Pkg Stats / Ryan Hefner

handy-img

v0.8.0

Published

handy img tool and API

Downloads

24

Readme

handy-img

handy img tool and API

Build Status Coverage Status npm version npm downloads npm license

compress Features

  • [x] target mozjpeg / webp are supported. @squoosh/cli supports more format.
  • [x] Node.js native addon, better performance than squoosh WASM version.
  • [x] batch process, support --files glob or dir mode --dir
  • [x] parallel compress. set your UV_THREADPOOL_SIZE=64 (see this) and handy-img will use this as concurrency.

Install

$ pnpm add -g handy-img

or invoke without install

# pnpm, recommend
pnpm dlx handy-img
# or yarn 2
yarn dlx handy-img

# or npx/pnpx
npx handy-img
pnpx handy-img

cli

just type himg or handy-img

$ himg
himg <命令>

命令:
  himg compress <file>  compress file                               [aliases: c]
  himg info <file>      show info for file                          [aliases: i]

选项:
  --version  显示版本号                                                   [布尔]
  --help     显示帮助信息                                                 [布尔]

缺少 non-option 参数:传入了 0 个, 至少需要 1 个

himg compress or himg c

$ himg c -h
Compress img

$ handy-img compress

━━━ Options ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

  -f,--files #0                files as input
  --ignore-case                ignore case for -f,--files, default true
  --glob-cwd #0                cwd used in glob
  -t,--tokens,--show-tokens    show available tokens
  -o,--output #0               output patterns
  --codec #0                   Allowed codec: `mozjpeg` or `webp`
  --metadata                   keep metadata(only available with --codec webp)
  -q,--quality #0              quality
  -d,--dir #0                  compress whole dir, and output to dir_compressed
  --dir-suffix #0              suffix to append to original dir name when using -d,--dir mode
  -y,--yes                     exec commands, default false(only preview commands, aka dry run)

flags

| flag | desc | default | remark | | --------------------------- | ---------------------------------------------------------------- | ------------- | ---------------------------------------------------- | | -f,--files | specify input, | | glob supported, see globby & fast-glob | | --ignore-case | ignore case when glob input | true | | | --glob-cwd | cwd of -f,--files provided | pwd | | | -t,--tokens,--show-tokens | show available tokens | | help you to decide the -o,--output flag, see below | | -o,--output | output pattern | | | | --codec | Allowed codec: mozjpeg or webp or mozjpeg-raw | mozjpeg | | | --metadata | keep metadata(not available with --codec mozjpeg-raw) | true | keep exif data | | -q,--quality | quality | 80 | encode quality, 0-100 | | -d,--dir | compress whole dir, and output to dir_compressed | | | | --dir-suffix | suffix to append to original dir name when using -d,--dir mode | _compressed | | | -O,--other,--other-files | how to handle other files in dir mode | | move or copy none img files to newly created dir | | -y,--yes | exec commands, default false(only preview commands, aka dry run) | false | |

Usage

-d, use dir mode

himg c -d ./your-dir-here -y

glob all imgs in the dir you provided, and output to a new directory, which name is original name + dir suffix and img will keep same structure.

# example
himg c -d dir -q 85 -y

image

about -y,--yes

without this option, you will see what input will be processed and what file will be generated. but the compress action will not really execute. aka dry run.

--------------------------------------------------------------------------------
  current previewing commands. After comfirmed, append -y or --yes flag to execute
--------------------------------------------------------------------------------

it's like a safety guard for a gun

-f,--files, single or multiple files

1.decide input

image

2.then use -t,--tokens,--show-tokens show available tokens

image

3.write your output pattern & preview

example pattern himg c -f './*.jpg' -t -o ':dir/:name_compressed.:ext' image

example pattern himg c -f './*.jpg' -t -o ':dir/compressed/:name.:ext' image

4.use -y,--yes to execute

Which codec & quality should I choose ?

See

  • https://tsev.dev/posts/2023-11-10-should-avif-be-the-dominant-image-format/
  • AND https://github.com/magicdawn/magicdawn/issues/170#issuecomment-1858817900

Changelog

CHANGELOG.md

License

the MIT License http://magicdawn.mit-license.org