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

v0.1.4

Published

n8n community node to generate PDF documents with DocuPotion

Readme

n8n-nodes-docupotion

This is an n8n community node. It lets you use DocuPotion in your n8n workflows.

DocuPotion is a document generation and automation tool. It lets you design professional-looking document templates using a drag and drop editor. You can generate PDFs of these templates and fill them with your own data in an n8n workflow.

n8n is a fair-code licensed workflow automation platform.

Installation Operations Credentials Compatibility Usage Resources Version history

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

| Operation | Description | |-----------|-------------| | Create Document | Generate a PDF document from a DocuPotion template |

Output options

| Option | Description | |--------|-------------| | File | Returns the document as binary data for use in subsequent workflow steps (e.g. email attachments, cloud storage uploads) | | URL | Returns a temporary presigned URL to the generated document | | Base64 | Returns the document as a base64-encoded string |

Credentials

To use this node, you need a DocuPotion account:

  1. Sign up at app.docupotion.com
  2. Copy your API Key from the dashboard
  3. In n8n, add a new DocuPotion API credential and paste your API Key

Compatibility

Tested with n8n v1.71.0 and above.

Usage

  1. Add the DocuPotion node to your workflow
  2. Select your DocuPotion API credentials
  3. Enter the Template ID of the template you want to generate
  4. Choose an Output type:
    • File (default) — returns binary data you can pass to nodes like Send Email, Google Drive, Write Binary File, etc. You can set a custom file name.
    • URL — returns a temporary link to the document. You can configure how long the URL remains valid (1–10,080 minutes).
    • Base64 — returns the raw base64-encoded document data in the JSON output.
  5. Optionally provide Template Data as a JSON object to fill in dynamic template variables

Resources

Version history

0.1.0

Initial release with the following features:

  • Create Document operation — generate PDFs from DocuPotion templates
  • Output options — File (binary), URL (presigned), or Base64
  • Template Data — pass dynamic variables as JSON to populate templates