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

v0.2.0

Published

n8n node for OCR.space API - extract text from images using OCR

Readme

n8n-nodes-ocrspace

An n8n community node for extracting text from images using the OCR.space API.

Features

  • Text Extraction: Extract text from images in various formats (PNG, JPG, GIF, TIF, BMP, PDF)
  • Multiple Languages: Support for 25+ languages including English, Spanish, French, German, Chinese, Arabic, and more
  • Flexible Input: Process images from any binary field in your n8n workflow
  • Advanced Options:
    • Choose between OCR engines for optimal accuracy
    • Auto-detect image orientation
    • Extract word-level coordinates
    • Image scaling for better recognition

Installation

Follow the installation guide in the n8n community nodes documentation.

npm install n8n-nodes-ocrspace

Credentials

You need an OCR.space API key to use this node:

  1. Sign up at OCR.space
  2. Get your free API key (25,000 requests/month)
  3. In n8n, create new "OCR.space API" credentials with your API key

Node Configuration

Required Parameters

  • Binary Property: Name of the binary field containing the image (default: "data")

Optional Parameters

  • Language: OCR language (default: English)
  • OCR Engine: Choose Engine 1 (default) or Engine 2
  • Additional Options:
    • Detect Orientation: Auto-rotate images
    • Get Word Coordinates: Return bounding boxes for each word
    • Scale Image: Improve accuracy for small text

Usage Example

  1. Use a "HTTP Request" node to download an image
  2. Connect to the "OCR.space" node
  3. Configure the binary property name (usually "data")
  4. Select your preferred language and options
  5. The extracted text will be available in extractedText field

Output

The node returns:

  • extractedText: The extracted text content
  • ocrResults: Additional metadata including processing time, orientation, and confidence scores
  • wordCoordinates: Word-level bounding boxes (if enabled)

Supported Image Formats

  • PNG, JPG, GIF, TIF, BMP
  • PDF (up to 3 pages on free tier)
  • Maximum file size: 1MB

Rate Limits

  • Free tier: 25,000 requests per month
  • Rate limit: 500 requests per day per IP address

License

MIT