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-volcengine

v1.1.9

Published

n8n community nodes for VolcEngine services - ECS image management, task monitoring and more cloud automation

Downloads

126

Readme

n8n-nodes-volcengine

n8n.io - Workflow Automation

This is an n8n community node package that provides integration with VolcEngine services.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Nodes (Recommended)

  1. Go to Settings > Community Nodes.
  2. Select Install.
  3. Enter n8n-nodes-volcengine in Enter npm package name.
  4. Agree to the risks of using community nodes: select I understand the risks of installing unverified code from a public source.
  5. Select Install.

After installing the node, you can use it like any other node in n8n.

Manual Installation

To get started install the package in your n8n root directory:

npm install n8n-nodes-volcengine

For Docker-based deployments add the following line before the font installation command in your n8n Dockerfile:

RUN cd /usr/local/lib/node_modules/n8n && npm install n8n-nodes-volcengine

Supported Services

✅ ECS (Elastic Compute Service)

  • Copy Image: Cross-region image replication with full parameter support
  • Describe Tasks: Query progress of asynchronous tasks (copy, export, import operations)
    • Support querying by Task IDs or Resource IDs
    • Pagination support for large result sets
    • Real-time task status and progress monitoring

🚧 Coming Soon

  • RDS: Database management
  • CDN: Content delivery network
  • VPC: Virtual private cloud
  • CLB: Cloud load balancer

Credentials

You need to create VolcEngine API credentials to use this package:

  1. Log in to the VolcEngine Console
  2. Go to Access Control > Access Keys
  3. Create or obtain your AccessKeyId and SecretAccessKey
  4. In n8n, create new credentials of type VolcEngine API
  5. Enter your AccessKeyId, SecretAccessKey, and default Region

Usage

Copy Image Example

  1. Add the VolcEngine ECS node to your workflow
  2. Select Image as the resource
  3. Select Copy as the operation
  4. Configure the parameters:
    • Source Image ID: The ID of the image to copy (e.g., image-abc123def456789)
    • Destination Region: Target region for the copied image
    • Target Image Name: Name for the new image
    • Description (optional): Description for the new image
    • Copy Image Tags (optional): Whether to copy source image tags
    • Project Name (optional): Project name for the image

Supported Regions

  • 华北2(北京)- cn-beijing
  • 华东2(上海)- cn-shanghai
  • 华南1(广州)- cn-guangzhou
  • 西南1(成都)- cn-chengdu
  • 华东1(杭州)- cn-hangzhou
  • 华东3(南京)- cn-nanjing
  • 亚太东南1(新加坡)- ap-singapore
  • 亚太东北1(东京)- ap-tokyo
  • 美国东部1(弗吉尼亚)- us-east-1
  • 美国西部2(俄勒冈)- us-west-2

API Documentation

For detailed API documentation, please refer to:

Development

Prerequisites

  • Node.js 18+
  • npm or pnpm
  • n8n development environment

Setup

# Clone the repository
git clone https://github.com/caiwenhao/n8n-nodes-volcengine.git
cd n8n-nodes-volcengine

# Install dependencies
npm install

# Build the package
npm run build

# Run linting
npm run lint

# Run tests
npm test

Project Structure

n8n-nodes-volcengine/
├── credentials/
│   └── VolcEngineApi.credentials.ts
├── nodes/
│   └── VolcEngine/
│       ├── types.ts
│       ├── GenericFunctions.ts
│       ├── volcengine.svg
│       └── ECS/
│           ├── VolcEngineEcs.node.ts
│           ├── ImageDescription.ts
│           ├── VolcEngineEcs.node.json
│           └── ecs.svg
├── dist/                 # Compiled output
├── package.json
├── tsconfig.json
└── README.md

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Guidelines

  1. Follow the existing code style
  2. Add tests for new features
  3. Update documentation as needed
  4. Ensure all tests pass before submitting

License

MIT

Support

Changelog

1.0.0

  • Initial release
  • ECS Copy Image functionality
  • VolcEngine API authentication
  • Support for 10 regions
  • Comprehensive error handling

Note: This is a community-maintained package and is not officially supported by VolcEngine or n8n.io.