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-deep-ocr

v1.2.2

Published

n8n community node for Deep-OCR document processing API

Readme

n8n-nodes-deep-ocr

N8N Community Node for the Deep-OCR Service - Extract structured data from documents using AI-powered OCR.

npm version License: MIT

🚀 Features

  • Structured Data Extraction: Receive a structured JSON object with the fields relevant to the document type
  • 7 Document Types: Invoice, Receipt, Contract, Delivery Note, ID Document, Handwriting, Generic
  • Multiple Format Support: PDF, PNG, JPG, JPEG, WebP (up to 10MB)
  • Secure Authentication: API key stored securely using n8n credentials

📦 Installation

Community Nodes (Recommended)

  1. Go to SettingsCommunity Nodes
  2. Click Install a community node
  3. Enter n8n-nodes-deep-ocr
  4. Click Install

Manual Installation

npm install n8n-nodes-deep-ocr

🔧 Configuration

Setting Up Credentials

  1. Get your API key from Deep-OCR Dashboard
  2. In n8n, go to CredentialsAdd Credential
  3. Search for "Deep-OCR API"
  4. Enter your API key and save

📖 Usage

  1. Add the Deep-OCR node to your workflow
  2. Connect a node that provides binary data (e.g., Read Binary File, HTTP Request)
  3. Configure:
    • Binary Property: Name of the binary property containing your document (default: data)
    • Document Type: Select the type that matches your document
  4. Execute — the node outputs a JSON object with the extracted fields

Document Types

| Type | Description | |---|---| | invoice | Vendor, line items, totals, payment terms | | receipt | Merchant, items purchased, totals, payment method | | contract | Parties, dates, key clauses | | delivery_note | Sender, recipient, items, quantities | | id_document | Name, date of birth, document number, expiry | | handwriting | Transcription of handwritten text | | generic | General extraction for any document type |

📋 Example Workflow

{
  "nodes": [
    {
      "name": "Read Invoice PDF",
      "type": "n8n-nodes-base.readBinaryFile",
      "parameters": {
        "filePath": "/path/to/invoice.pdf"
      }
    },
    {
      "name": "Extract Invoice Data",
      "type": "n8n-nodes-deep-ocr.deepOcr",
      "parameters": {
        "binaryPropertyName": "data",
        "documentType": "invoice"
      }
    }
  ]
}

🔒 Supported File Types

| Format | MIME Type | Max Size | | -------- | --------------- | -------- | | PDF | application/pdf | 10MB | | PNG | image/png | 10MB | | JPG/JPEG | image/jpeg | 10MB | | WebP | image/webp | 10MB |

🛠️ Development

Prerequisites

  • Node.js 22+
  • pnpm 9.1+

Setup

# Clone the repository
git clone https://github.com/Heey-Global/deep-ocr-n8n.git
cd deep-ocr-n8n

# Install dependencies
pnpm install

# Build
pnpm build

# Run tests
pnpm test

# Run linter
pnpm lint

Project Structure

src/
├── credentials/
│   └── DeepOcrApi.credentials.ts    # API key credential type
├── nodes/
│   └── DeepOcr/
│       ├── DeepOcr.node.ts          # Main node implementation
│       └── deepocr.svg              # Node icon
├── utils/
│   └── errors.ts                    # Error handling utilities
└── index.ts                         # Package entry point

📄 License

MIT

🤝 Contributing

Contributions are welcome! Please submit pull requests to our repository.

📞 Support