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

n8n-nodes-napcat-test

v0.2.1

Published

n8n community node for NapCat QQ Bot API integration. 支持QQ机器人消息发送、账号管理等功能的n8n社区节点。

Readme

n8n-node-napcat-test

Community node for integrating NapCat QQ Bot API with n8n. For full Chinese documentation, see README_CN.md.

社区节点,用于将 NapCat QQ 机器人 API 集成到 n8n 中。完整的中文文档请参阅 README_CN.md

Install & Build | 安装与构建

npm ci
npm run build

Usage | 使用方法

English:

  • Add credentials: NapCat API (Base URL, Access Token)
  • Use the NapCat node in your n8n workflows

中文:

  • 添加凭证:NapCat API(基础 URL、访问令牌)
  • 在您的 n8n 工作流中使用 NapCat 节点

Links | 链接

  • Detailed Chinese guide: README_CN.md
  • 详细中文指南:README_CN.md
  • Modification details: CHANGELOG_NODES_MODIFICATION.md
  • 修改详情:CHANGELOG_NODES_MODIFICATION.md

Project Structure | 项目结构

n8n-nodes-napcat/
├── credentials/           # Credential types | 凭证类型
│   └── NapCatApi.credentials.ts
├── nodes/                # Node types | 节点类型
│   └── NapCat/          # NapCat node (both operation & tool) | NapCat 节点(操作节点和工具节点)
│       ├── NapCat.node.ts
│       └── napcat.svg
├── dist/                # Compiled output (generated) | 编译输出(自动生成)
├── package.json
├── tsconfig.json
├── gulpfile.js
├── build.js
└── CHANGELOG_NODES_MODIFICATION.md  # Modification details | 修改详情

Note | 注意: NapCat 节点现在同时支持作为普通操作节点和 AI Agent 工具节点使用。详见 CHANGELOG_NODES_MODIFICATION.md

Development | 开发

# Install dependencies | 安装依赖
npm ci

# Build TypeScript | 编译 TypeScript
npm run build:tsc

# Build icons | 构建图标
npm run build:icons

# Watch mode | 监听模式
npm run dev

# Full watch mode | 完整监听模式
npm run dev:full

# Format code | 格式化代码
npm run format

# Lint | 代码检查
npm run lint