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

v1.0.1

Published

n8n community node for Layerre - create templates and variants from Canva designs

Readme

n8n-nodes-layerre

This is an n8n community node for Layerre - a platform for creating templates and variants from Canva designs.

n8n is a fair-code licensed workflow automation platform.

Installation
Operations
Credentials
Usage
Contributing
License

Installation

Follow the installation guide in the n8n community nodes documentation.

npm install n8n-nodes-layerre

Operations

Template

  • Create - Create a new template from a Canva design URL
  • Get - Get a template by ID with all its layers
  • Get Many - List all templates for the current user
  • Delete - Delete a template

Variant

  • Create - Create a new variant with layer overrides (text, images, colors, positions, etc.)
  • Get - Get a variant by ID
  • Get Many - List all variants for a template
  • Delete - Delete a variant

Credentials

To use this node, you need a Layerre API key:

  1. Log in to your Layerre account
  2. Go to API Keys
  3. Create a new API key
  4. Copy the key (starts with lyr_)

In n8n:

  1. Go to Credentials → Add Credential
  2. Search for "Layerre API"
  3. Paste your API key

Usage

Creating a Template from Canva

  1. Add the Layerre node to your workflow
  2. Select Template as the resource
  3. Select Create as the operation
  4. Paste your Canva share URL (e.g., https://www.canva.com/design/...)
  5. Execute the node

The node will return the template with all extracted layers.

Creating a Variant with Overrides

  1. Add the Layerre node to your workflow
  2. Select Variant as the resource
  3. Select Create as the operation
  4. Choose a template from the dropdown (dynamically loaded from your account)
  5. (Optional) Set variant dimensions (width/height) to override the template size
  6. Add layer overrides:
    • Select a layer from the dropdown (dynamically loaded from the selected template)
    • Configure override options:
      • Text layers: text content, color, font name, font size, font weight, italic, underline, text align, letter spacing, line spacing
      • Image layers: image URL, opacity, flip horizontal/vertical
      • All layers: position (x, y), size (width, height), rotation, color
  7. Execute the node

The node will render the variant and return the image URL.

Example: Bulk Image Generation

[Spreadsheet] → [Loop Over Items] → [Layerre: Create Variant] → [Download Image]

Use data from a spreadsheet to create personalized images at scale by mapping columns to layer overrides.

Contributing

Contributions are welcome! Here's how to get started:

Development Setup

  1. Fork the repository on GitHub

  2. Clone your fork:

    git clone https://github.com/YOUR_USERNAME/n8n-nodes-layerre.git
    cd n8n-nodes-layerre
  3. Install dependencies:

    npm install
  4. Install n8n globally:

    npm install n8n -g
  5. Start development mode (runs n8n with the node loaded):

    npm run dev
  6. Make your changes and test in the n8n UI

Building

npm run build

Linting

npm run lint
npm run lint:fix  # Auto-fix issues

Submitting Changes

  1. Create a feature branch (git checkout -b feature/amazing-feature)
  2. Commit your changes (git commit -m 'Add amazing feature')
  3. Push to the branch (git push origin feature/amazing-feature)
  4. Open a Pull Request

Resources

License

MIT