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

@luka-cat-mimi/n8n-nodes-heic-convert

v0.2.0

Published

n8n 社区节点:HEIC/HEIF 图片转 PNG/JPEG 格式转换

Readme

n8n-nodes-heic-convert

n8n 社区节点插件,用于将 HEIC/HEIF 格式图片转换为 PNG 或 JPEG 格式。

功能

  • 支持 HEIC/HEIF 图片转 JPEG
  • 支持 HEIC/HEIF 图片转 PNG
  • 可调节 JPEG 输出质量(0-1)
  • 自动保留原始文件名并更换扩展名
  • 支持批量处理多个图片
  • 支持 continueOnFail 错误处理

安装

在 n8n 的 Settings > Community Nodes 中搜索并安装:

@luka-cat-mimi/n8n-nodes-heic-convert

或通过命令行安装:

npm install @luka-cat-mimi/n8n-nodes-heic-convert

节点参数

| 参数 | 类型 | 默认值 | 说明 | |------|------|--------|------| | Input Binary Field | string | data | 包含 HEIC 图片的二进制字段名 | | Output Format | JPEG / PNG | JPEG | 输出图片格式 | | Quality | number (0-1) | 0.92 | JPEG 压缩质量(仅 JPEG 格式时可用) | | Output Binary Field | string | data | 输出二进制字段名 |

使用示例

  1. 使用 Read Binary FileHTTP Request 节点获取 HEIC 图片
  2. 连接 HEIC Convert 节点
  3. 选择输出格式(JPEG 或 PNG)
  4. 如选择 JPEG,可调整压缩质量
  5. 输出的二进制数据可传递给后续节点使用

开发

# 安装依赖
npm install

# 构建
npm run build

# 开发模式(监听变更)
npm run dev

# 格式化代码
npm run format

# 代码检查
npm run lint

许可证

MIT