Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
angular-barcode-scan
Advanced tools
Servicio Angular para manejar el plugin Cordova: `bardode-scan`
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`
The npm package angular-barcode-scan receives a total of 4 weekly downloads. As such, angular-barcode-scan popularity was classified as not popular.
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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.