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

v0.2.1

Published

n8n community node for ConDoc — a multi-tenant document processing and OCR platform. Automate document uploads, OCR extraction, project management, and more with 21 API operations.

Downloads

589

Readme

n8n-nodes-condoc

This is an n8n community node for the ConDoc platform — a multi-tenant document processing and OCR solution built for Thai businesses.

n8n is a fair-code licensed workflow automation platform.

Features

Automate your document processing pipeline with 21 API operations across 9 resources:

| Resource | Operations | Description | |----------|-----------|-------------| | OCR | Upload File, Get Job Status | Upload documents for OCR processing and poll results | | Document | List, Get, Delete | Manage processed documents and retrieve OCR results | | Credit | Get Balance | Check workspace credit balance | | Usage | Get Summary, Get Daily | Monitor API usage and analytics | | Project | Create, List, Get, Update, Delete | Manage projects within your workspace | | Project Settings | Get, Update | Configure webhooks, processing mode, and more | | Project Definition | Get, Update | Manage project schema definitions | | Project Fixed Data | Get, Update | Manage custom field data for projects | | Project Field Mapping | Get, Update | Configure field mapping rules |

Supported File Types

PDF, JPG, PNG, HEIC, and more — up to 100MB and 50 pages per document.

Prerequisites

  • An active ConDoc account
  • A ConDoc API key (generate from your workspace settings)
  • n8n version 1.0.0 or later

Installation

In n8n (Recommended)

  1. Go to Settings > Community Nodes
  2. Click Install
  3. Enter n8n-nodes-condoc
  4. Click Install

Manual Installation

cd ~/.n8n/custom
npm install n8n-nodes-condoc

Then restart n8n.

Authentication

This node uses API Key authentication via the X-API-Key header.

  1. In ConDoc, go to your workspace settings and create an API key
  2. In n8n, create a new ConDoc API credential
  3. Enter your Base URL (e.g., https://api.condoc.ai) and API Key

The credential will be automatically tested against the ConDoc API.

Usage Examples

Example 1: Upload and Process a Document

  1. Read Binary File — Read a PDF/image file
  2. ConDoc (OCR > Upload File) — Upload the file for processing
  3. Wait — Wait for processing to complete
  4. ConDoc (OCR > Get Job Status) — Retrieve OCR results

Example 2: List and Export Documents

  1. ConDoc (Document > List) — List all documents in a project
  2. Loop — Iterate through documents
  3. ConDoc (Document > Get) — Get OCR results for each document
  4. Spreadsheet File — Export results to Excel/CSV

Example 3: Monitor Credits and Usage

  1. Schedule Trigger — Run daily
  2. ConDoc (Credit > Get Balance) — Check remaining credits
  3. ConDoc (Usage > Get Daily) — Get daily usage stats
  4. IF — Check if credits are low
  5. Send Email / Slack — Send alert notification

API Rate Limiting

API requests are rate-limited per API key (default: 60 requests/minute). Rate limits can be configured by your workspace administrator.

Resources

License

MIT