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

v1.0.16

Published

n8n community node for the Iteration Layer API — document extraction, image transformation, image generation, document generation, and sheet generation.

Downloads

203

Readme

n8n-nodes-iterationlayer

n8n community node for the Iteration Layer API.

Extract data from documents, transform images, generate images, and create documents — all from your n8n workflows.

Demo

Watch the demo video

Installation

Via n8n UI (recommended)

  1. Open Settings > Community Nodes
  2. Select Install a community node
  3. Enter n8n-nodes-iterationlayer
  4. Accept the risks and install

Via npm (self-hosted)

cd ~/.n8n
npm install n8n-nodes-iterationlayer

Restart n8n after installation.

Credentials

  1. Go to Credentials > New Credential
  2. Search for Iteration Layer API
  3. Enter your API key (starts with il_)
  4. Get an API key at platform.iterationlayer.com

Resources

The node provides one resource per Iteration Layer API:

Document Extraction

Extract structured data from PDFs, images, DOCX, and more. Define a schema with field names, types, and descriptions — the API returns typed values with confidence scores.

  • File input: Binary data from a previous node or a public URL
  • Schema: Build via the UI (17 field types) or provide raw JSON for advanced schemas (arrays, calculated fields)

Website Extraction

Extract structured data from public website pages with the same schema builder used by Document Extraction.

  • Website URL: Public HTTPS URL, with optional custom user agent, locale, timeout, and JavaScript rendering
  • Schema: Build via the UI or provide raw JSON for advanced schemas

Image Transformation

Apply image operations sequentially: resize, crop, rotate, blur, sharpen, convert format, upscale, remove background, and more (24 operations total).

  • File input: Binary data or URL
  • Operations: Add multiple operations via the UI — each type shows its specific parameters

Image Generation

Generate images from layer compositions defined as JSON. Supports solid-color, text, image, QR code, barcode, and gradient layers.

  • Dimensions: Width and height in pixels
  • Layers: JSON array defining the composition (see API docs)
  • Output format: PNG, JPEG, WebP, TIFF, GIF, or AVIF

Document Generation

Generate PDF, DOCX, EPUB, or PPTX documents from structured JSON definitions including metadata, page layout, styles, and content blocks.

  • Format: PDF, DOCX, EPUB, or PPTX
  • Document: JSON object with the full document definition (see API docs)

Document to Markdown

Convert PDFs, DOCX, PPTX, and other documents into clean, structured Markdown.

  • File input: Binary data or URL
  • Output: Markdown text with the document's content

Sheet Generation

Generate XLSX, CSV, or Markdown spreadsheets from structured JSON definitions.

  • Sheets: JSON array defining sheet names, columns, and row data
  • Styles: Optional header and body cell styles
  • Output format: XLSX, CSV, or Markdown

Binary Data

Image Transformation, Image Generation, Document Generation, and Sheet Generation return binary data. The output is available as n8n binary data that you can pass to downstream nodes (e.g., write to disk, send via email, upload to S3).

Document Extraction returns JSON data with extracted field values and confidence scores. Document to Markdown returns JSON with the markdown text.

Async Mode

All resources support async mode. Enable it and provide a webhook URL — the API returns immediately and delivers results to your webhook when processing is complete.

Links

Issues & Feedback

Please report bugs and request features in the issues repository.

License

MIT