
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
angular-barcode-scan
Advanced tools
Servicio Angular para manejar el plugin Cordova: bardode-scan
$ ionic cordova plugin add barcode-scan
$ npm install angular-barcode-scan
app.module.ts:
import { BarcodeScan, BarcodeScanModule } from 'angular-barcode-scan';
@NgModule({
declarations: [
...
],
imports: [
...
BarcodeScanModule
],
providers: [
...
BarcodeScan
...
],
})
app.component.html:
<ion-app>
<barcode-host-listener [debug]="true"></barcode-host-listener>
...
</ion-app>
import { Device } from '@awesome-cordova-plugins/device/ngx';
import { BarcodeScan } from 'angular-barcode-scanner';
constructor(
private barcodeScan: BarcodeScan,
private device: Device
) {}
...
await this.barcodeScan.setBarcodeDevice(this.device.model);
...
await this.barcodeScan.setBarcodeDevice('NQuire300');
await this.barcodeScan.setBarcodeDevice(BarcodeScan.Newland);
...
await this.barcodeScan.clearBarcodeDevice();
...
ICameraOptions {
preferFrontCamera?: boolean;
showFlipCameraButton?: boolean;
showTorchButton?: boolean;
torchOn?: boolean; // launch with the torch switched on (if available)
saveHistory?: boolean; // save scan history (default false)
prompt?: string; // Android mensaje inferior
resultDisplayDuration?: number; // display scanned text for X ms. 0 suppresses it entirely, default 1500
formats?: string; // QR_CODE, DATA_MATRIX, UPC_A, UPC_E, EAN_8, EAN_13, CODE_39, CODE_93, CODE_128, CODABAR, ITF, RSS14, PDF_417, RSS_EXPANDED, AZTEC default: all but PDF_417 and RSS_EXPANDED
orientation?: string; // portrait | landscape, default unset so it rotates with the device
disableSuccessBeep?: boolean;
device?: string;
}
this.scannerProvider.scanBarcode(Options?).then((result)=>{
console.log(result);
});
...
this.barcodeScan.subscrbeToScan(this.subscribeKey,
async (value) => {
this.callbackFunction(value.result);
}, (err) => {
console.log(err);
});
...
this.barcodeScan.unSubscrbeToScan(this.subscribeKey);
FAQs
Servicio Angular para manejar el plugin Cordova: `bardode-scan`
We found that angular-barcode-scan 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.