
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
nodejs-ocr
Advanced tools
A simple and easy to use client to perform OCR using ABBYY Cloud OCR SDK.
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 err
s 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 err
s 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 err
s 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 err
s 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 err
s 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.