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

@codenoobforreal/clitools

v0.5.1

Published

CLI tool for video processing (H.265/HEVC encoding & QuickTime compatibility) using FFmpeg, and batch lossless image compression with format preservation

Readme

@codenoobforreal/clitools

安装与使用

# 使用 pnpm
pnpm dlx @codenoobforreal/clitools

# 使用 npx
npx @codenoobforreal/clitools

功能特性

视频编码与压缩

QuickTime兼容性修复

  • 无损转换​:批量将H.265视频重新封装为QuickTime兼容形式,无需重新编码

  • 环境依赖​:
    本功能需要安装 FFmpeg
    安装指南

批量无损图片压缩

  • ​批量无损图片压缩​:保持原有格式进行批量处理

  • 特别提示​:当源文件较小时,输出文件可能大于原文件

输出结构

处理后的文件将保存在原始目录中,并添加时间戳后缀:
/path/to/input.mp4/path/to/input-20231010120000.mp4

FFmpeg 安装指南

安装

Windows

  1. 访问官方构建版本:https://www.gyan.dev/ffmpeg/builds
  2. 下载最新的 ffmpeg-git-full.7z 文件
  3. 解压到您选择的目录(例如 C:\ffmpeg
  4. 添加环境变量:
    • 右键开始菜单 > 系统 > 高级系统设置
    • 环境变量 > Path > 编辑 > 新建
    • 添加 FFmpegbin 目录(例如 C:\ffmpeg\bin

macOS

brew install ffmpeg

Linux

# Debian/Ubuntu
sudo apt update && sudo apt install ffmpeg

# Fedora
sudo dnf install ffmpeg

# Arch Linux
sudo pacman -S ffmpeg

验证安装

# 运行该命令会显示版本信息和编译配置
ffmpeg -version