
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
barkoder-cordova
Advanced tools
Cordova plugin that connects to barkoderSDK which helps users scan barcodes with mobile devices
The barKoder Barcode Scanner SDK cordova plugin grants an easy to use solution with a great and completely customizable interface that can be instantly integrated in both iOS and Android apps.
The barKoder Barcode Scanner SDK will fully transform the user's smartphones and tablets that deploy your Enterprise and Consumer apps into rugged barcode scanning devices without the need to procure and maintain expensive and sluggish hardware devices that have a very short life span.
Even though the barKoder barcode scanner SDK is a relatively new product, it is already more advanced than other competitor API's. Its robust barcode reading engine can be used to read the content of the most widely used barcodes with lightning fast speed and unprecedented recognition rate:
1D - Codabar, Code 11, Code 25, Code 39, Code 93, Code 128, EAN-8, EAN-13, Interleaved 2 of 5, ITF-14, MSI Plessey, Pharmacode, Telepen, UPC-A & UPC-E 2D - Aztec Code, Aztec Compact, Data Matrix, DotCode, PDF417, Micro PDF417, QR Code & Micro QR Code
The barKoder SDK features multiple algorithms that handle a wide variety of barcode scanning scenarios with unprecedented performance in terms of speed and success rate:
You can check out our free demo app Barcode Scanner by barKoder available both via Apple App Store & Google Play Store.
You can find full documentation about the barKoder Barcode Reader SDK here: https://docs.barkoder.com
If you run the barKoder Barcode Scanner SDK without a valid trial or production license, all results upon successful barcode scans will be partially masked by asterisks (*). You can get a trial license simply by registering on the barKoder Portal and utilizing the self-service for Evaluation License Generation! Each trial license will be good for an initial duration of 30 days and can be deployed to up to 25 devices. For any custom requirements, contact our sales team via sales@barkoder.com
Note that a trial license is only supposed to be utilized in a development or staging environment. If you decide to publish a trial license along with your app to the App Store, Play Store or any public store we won't be held accountable for any potential consequences.
Our support is completely free for integration or testing purposes and granted through the barKoder Portal. After registering and logging into your account, you only need to submit a Support Issue form. Alternatively, you can contact us by email via support@barkoder.com.
cordova is a cross-platform app runtime that makes it easy to build web apps that run natively on iOS, Android and the web. To get started with building apps using cordova, you'll need to meet certain requirements:
npm install -g cordova
cordova platform add ios
cordova platform add android
cordova build ios
cordova build android
cordova plugin add barkoder-cordova
If you would like to install from a local folder you will need to follow these steps:
cordova plugin add “/your-path/barkoder-cordova”
In your ts file:
declare var Barkoder: any;
import { BarkoderResult, BarcodeType } from 'plugins/barkoder-cordova-plugin/www/BarkoderConfig';
@ViewChild('barkoderView') barkoderViewRef!: ElementRef;
constructor(private platform: Platform) {}
ngAfterViewInit() {
this.platform.ready().then(() => {
Barkoder.registerWithLicenseKey("YOUR_LICENSE_KEY");
setTimeout(() => {
const boundingRect = this.barkoderViewRef.nativeElement.getBoundingClientRect() as DOMRect;
Barkoder.initialize(
Math.round(boundingRect.width),
Math.round(boundingRect.height),
Math.round(boundingRect.x),
Math.round(boundingRect.y)
);
this.setBarkoderSettings();
this.setActiveBarcodeTypes();
}, 200);
});
}
setActiveBarcodeTypes() {
Barkoder.setBarcodeTypeEnabled(BarcodeType.qr, true);
Barkoder.setBarcodeTypeEnabled(BarcodeType.code128, true);
Barkoder.setBarcodeTypeEnabled(BarcodeType.ean13, true);
}
setBarkoderSettings() {
Barkoder.setRegionOfInterestVisible(true);
Barkoder.setRegionOfInterest(5, 5, 90, 90);
Barkoder.setImageResultEnabled(true);
Barkoder.setBarcodeThumbnailOnResultEnabled(true);
}
startScanning() {
Barkoder.startScanning((data: any) => {
console.log("startScanning results called");
const barkoderResult = new BarkoderResult(data);
if (barkoderResult) {
barkoderResult.decoderResults.forEach((result, index) => {
console.log(`Result ${index + 1}: ${result.textualData}`);
});
}
}, (err: any) => {
console.log(err);
});
}
In your HTML file add the barkoderView div id:
<div id="barkoderView" #barkoderView >
In your scss file set the desired barkoderView height:
#barkoderView {
height: 400px;
}
FAQs
Cordova plugin that connects to barkoderSDK which helps users scan barcodes with mobile devices
The npm package barkoder-cordova receives a total of 1 weekly downloads. As such, barkoder-cordova popularity was classified as not popular.
We found that barkoder-cordova demonstrated a healthy version release cadence and project activity because the last version was released less than 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.