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

@copicake/n8n-nodes-copicake

v1.1.0

Published

n8n node for Copicake - Generate marketing visuals with templates and API

Downloads

71

Readme

Banner image

n8n-nodes-copicake

This is an n8n community node that lets you use Copicake in your n8n workflows.

Copicake is a data-driven image generation service that allows you to generate social media materials with just one click using templates and API calls.

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-copicake 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 your workflows.

Manual Installation

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

npm install n8n-nodes-copicake

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

Credentials

You need to set up credentials to use this node:

  1. In n8n, go to Credentials and create new Copicake API credentials.
  2. Enter your Copicake API key.

Operations

This node supports the following operations:

Image

Create

Create a new image from a template with custom changes.

Parameters:

  • Template ID (required): The ID of the template to use for image generation
  • Changes: Array of changes to apply to the template elements
    • Element Name: The name of the element to modify
    • Change Type: Type of change (Text, Image, QR Code, Shape)
    • Properties: Specific properties based on change type:
      • Text: text, fill color, stroke color, text background color
      • Image: image URL, stroke color
      • QR Code: content, fill color, stroke color
      • Shape: fill color, stroke color
  • Additional Options:
    • Format: Output format (PNG or JPG)
    • Max Wait Time (Seconds): Maximum time to wait for rendering completion (default: 60)
    • Polling Interval (Seconds): How often to check rendering status (default: 2)
    • Wait for Completion: Whether to poll until rendering is complete (default: true)
    • Webhook URL: URL to receive webhook when image is ready

Asynchronous Processing: By default, the node will automatically wait for the image rendering to complete before returning the final result. This includes polling the Copicake API every 2 seconds until the status becomes either success or failed, with a maximum wait time of 60 seconds. You can disable this behavior by setting "Wait for Completion" to false, which will return the initial response with processing status immediately.

Example:

{
  "template_id": "jfwrFJdR3z1eF8BcEhSnAFyhxgOq",
  "changes": [
    {
      "name": "text-9so09m",
      "text": "hello world",
      "fill": "#ff0000"
    },
    {
      "name": "image-yeavh7",
      "src": "https://your_website.com/test.png"
    }
  ],
  "options": {
    "format": "png",
    "webhook_url": "https://your_website.com/webhook_url"
  }
}

Get

Retrieve an existing image by its rendering ID.

Parameters:

  • Rendering ID (required): The rendering ID of the image to retrieve

Example:

{
  "rendering_id": "ki9ImK39lPRwb1oOpKbROkNWumFz"
}

Response Format

Create Image Response

{
  "rendering_id": "xc17NtfyMaxPDCtz0ZjEZ4guBmiC",
  "status": "processing",
  "created_at": "2023-01-01T00:00:00Z"
}

Get Image Response

{
  "rendering_id": "xc17NtfyMaxPDCtz0ZjEZ4guBmiC",
  "status": "success",
  "permanent_url": "https://copicake.s3.ap-northeast-1.amazonaws.com/renderings/xc17NtfyMaxPDCtz0ZjEZ4guBmiC.png",
  "created_at": "2023-01-01T00:00:00Z",
  "completed_at": "2023-01-01T00:00:05Z"
}

Example Workflows

Basic Image Generation

  1. Manual TriggerCopicake (Create Image)HTTP Request (to download image)

Automated Social Media Posts

  1. Schedule TriggerCopicake (Create Image)Twitter (post with generated image)

Dynamic Content Generation

  1. WebhookSet (prepare data) → Copicake (Create Image)Email (send with generated image)

Resources

Version History

0.1.0

  • Initial release
  • Support for Create Image and Get Image operations
  • Full support for all Copicake API features including text, image, QR code, and shape modifications

License

MIT