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

v1.0.4

Published

n8n node for Emboss — create fillable PDFs and fill forms from context.

Readme

n8n-nodes-emboss

An n8n community node for Emboss — turn flat PDFs into fillable forms and fill them from context.

Operations

  • Create Fillable Form — a flat PDF in, a fillable PDF out.
  • Fill From PDF + Context — a PDF plus context (text or a file), the filled PDF out.
  • Fill Existing Form — fill a form you already created in Emboss, by ID.

Credentials

An Emboss API key (Authorization: Bearer). Create one at https://getemboss.ai/dashboard, then add it as an Emboss API credential in n8n.

Installation

Settings → Community Nodes → Install n8n-nodes-emboss.

How it works

Every operation takes a PDF (and, for the fill operations, some context), runs the job on Emboss, waits for it to finish, and returns the resulting PDF on the node's binary output (property data) alongside a small JSON summary. Wire the binary output straight into a Write Binary File, Google Drive, email, or any node that accepts a file.

The input PDF is read from a binary property of the incoming item (default data), so put a node that produces a PDF — e.g. HTTP Request (download), Read Binary File, or a Google Drive download — immediately before the Emboss node.

Usage examples

Example 1 — Fill a form from context (most common)

Operation: Fill From PDF + Context

Configure:

  • Input PDF Field: data (the binary property holding your flat PDF)
  • Context (Text): the information to fill in, in plain language, e.g. Customer is Jane Doe, 412 Oak Street, Fresno CA. Installed a 40-gallon water heater on 2026-06-14. Total $1,240.
  • Context File Field: (optional) the name of a binary property holding a supporting document (PDF, DOCX, CSV, image, or text) — e.g. a work order to read details from.

Input item: an item whose binary data is the flat PDF (e.g. from a preceding Read Binary File node).

Output item:

  • binary.data — the filled PDF, ready to save or send.
  • json:
    {
      "session_id": "a1b2c3d4-…",
      "report": {
        "filled": ["customer_name", "address", "install_date", "amount"],
        "left_blank": ["second_unit_serial"]
      }
    }
    report.filled and report.left_blank list the field names Emboss filled and the ones it left empty (no matching context), so you can check coverage downstream.

A minimal workflow: Read Binary File (the blank form) → Emboss (Fill From PDF + Context) → Write Binary File (save the filled PDF).

Example 2 — Turn a flat PDF into a reusable fillable form

Operation: Create Fillable Form

Configure:

  • Input PDF Field: data

Output item:

  • binary.data — the fillable PDF (now has form fields).
  • json:
    { "form_id": "f47ac10b-…", "status": "ready" }

Keep the returned form_id to fill the same form repeatedly with the next operation.

Example 3 — Fill a form you already created

Operation: Fill Existing Form

Configure:

  • Form: pick it from the list (the node loads your Emboss forms), or switch to By ID and paste a form_id (e.g. from Example 2).
  • Context (Text) and/or Context File Field: same as Example 1.

Output item: same shape as Example 1 — binary.data is the filled PDF, json carries the session_id and report.

Notes

  • Jobs are polled to completion inside the node, so a single execution returns the finished PDF — no separate "wait" step needed. Larger forms take longer (typically seconds to ~a minute).
  • HTTP errors from the Emboss API surface in the n8n UI with their status and response. Enable Continue On Fail to route failures to the error output instead of stopping the workflow.