
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@nativescript/mlkit-text-recognition
Advanced tools
A plugin used with @nativescript/mlkit-core to enable Text Recognition in your app and provide TextResult type for the text recognition event data.
npm install @nativescript/mlkit-text-recognition
For an example, read Use @nativescript/mlkit-core and Text Recognition.
The Text Recognition event data type.
interface TextResult {
text?: string
bounds: Bounds
lines: TextLine[]
points: Point[]
}
interface Point {
x: number;
y: number;
}
interface Bounds {
origin: Origin;
size: Size;
}
interface Origin {
x: number;
y: number;
}
interface Size {
width: number;
height: number;
}
interface TextLine {
text?: string
bounds: Bounds
elements: TextElement[]
points?: Point[]
}
interface TextElement {
text?: string
bounds: Bounds
}
Apache License Version 2.0
FAQs
NativeScript MLKit Text Recognition module
We found that @nativescript/mlkit-text-recognition demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.