
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
nodejs-ocr
Advanced tools
A simple and easy to use client to perform OCR using ABBYY Cloud OCR SDK.
Unlike the alternatives, ABBYY's OCR is simple and practical. It's perfect for reliably reading basic text from pictures, documents, cheques, receipts and business cards. Requires no setup. OCR results are dependably consistent - the same input will never yield different results.
Implements the processImage, submitImage, processDocument, processTextField and processFields methods from the OCR SDK API.
$ npm install nodejs-ocr
let AbbyyClient = require('nodejs-ocr');
let client = new AbbyyClient('myAppId', 'myPassword', 'https://cloud.ocrsdk.com'); // Use https here if you'd like
function ocrComplete(err, results) {
if( !err ) {
console.log(results.toString()); // Raw results of completed Task (or a TaskId for submitImage calls)
}
}
let apiParameters = {
language: 'English',
profile: 'textExtraction',
textType: 'typewriter',
exportFormat: 'xml'
// etc...
};
client.processImage(apiParameters, './localFile.png', ocrComplete); // Buffers can also be passed
[parameters] <Object> Optional Abbyy API method parameters. Object with string properties.uploadData <string> or <Buffer> Image to be processed by API method.callback(err, results) <Function> Callback to return errs or OCR results.parameters <Object> Abbyy API method parameters. A text field region must be specified.
uploadData <string> or <Buffer> File to be processed by API method.
callback(err, results) Callback to return errs or OCR results.
[parameters] <Object> Optional Abbyy API method parameters.
uploadData <string> or <Buffer> File to be uploaded to Abbyy server.
callback(err, results) <Function> Callback to return errs or Task ID string representing uploaded file.
parameters <Object> Abbyy API method parameters. Task ID corresponding to a file uploaded via submitImage is required.
callback(err, results) <Function> Callback to return errs or OCR results.
parameters <Object> Abbyy API method parameters. Task ID corresponding to a file uploaded via submitImage is required.
uploadData <string> or <Buffer> XML representing fields to be processed by API method. For more information on the format of this XML see: XML Parameters of Field Recognition.
callback(err, results) <Function> Callback to return errs or OCR results.
FAQs
A simple and easy to use client to perform OCR using ABBYY Cloud OCR SDK.
The npm package nodejs-ocr receives a total of 3 weekly downloads. As such, nodejs-ocr popularity was classified as not popular.
We found that nodejs-ocr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.