Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
[![NPM version](https://img.shields.io/npm/v/ngx-zxing.svg?&label=npm)](https://www.npmjs.com/package/ngx-zxing) [![Downloads](https://img.shields.io/npm/dm/ngx-zxing.svg)](https://npmjs.org/package/ngx-zxing) [![Dependency Status](https://david-dm.org
Angular QR-Code scanner component.
To install this package, run:
yarn add @zxing/ngx-scanner@latest
Then import it into your Angular AppModule
:
// Common imports
import { NgModule /* , ... */ } from '@angular/core';
// Import the package's module
import { NgxZxingModule } from 'ngx-zxing';
@NgModule({
declarations: [ /* AppComponent ... */ ],
imports: [
// BrowserModule,
// ...
// ZXing scanner module
NgxZxingModule.forRoot(),
// another imports...
],
// ...
})
export class AppModule { }
Once the package is imported, you can use it in your Angular application:
<ngx-zxing
[start]="camStarted"
[device]="selectedDevice"
[cssClass]="'small-video'"
(camerasFound)="displayCameras($event)"
(scanSuccess)="handleQrCodeResult($event)"
></ngx-zxing>
start
can be used to start and stop the scanning (defaults to false
)device
is the video-device used for scanning (use one of the devices emitted by onCamsFound
)cssClass
this CSS-class name will be appended to the video-element e.g. for resizing it (see below)camerasFound
will emit an array of video-devices after view was initializedscanSuccess
will emit the result as string, after a valid QR-Code was scannedIn your CSS, define an extra class and pass it to the component with the cssClass
-parameter. CSS might look like this:
.small-video {
max-height: 70vh;
width: 100vw;
object-fit: contain;
}
Method | Parameters | Returns | Description |
---|---|---|---|
changeDevice | device: MediaDeviceInfo | void | Allows you to properly change the scanner device on the fly. |
camerasFound | callback: (devices: MediaDeviceInfo[] ) => {} | EventEmitter<MediaDeviceInfo > | Emits an event when cameras are found. |
camerasNotFound | callback: (): void => {} | EventEmitter<void> | Emits an event when cameras are not found. |
scanSuccess | callback: (result: string): void => {} | EventEmitter<string> | Emits an event when a scan is successful performed. |
scanFailure | callback: (): void => {} | EventEmitter<void> | Emits an event when a scan fails. |
scanError | callback: (error: any): void => {} | EventEmitter<any> | Emits an event when a scan throws an error. |
Copied from Instascan by Chris Schmich:
Many factors affect how quickly and reliably ZXing can detect QR codes.
If you control creation of the QR code, consider the following:
When scanning, consider the following:
Looking for a way to generate QR-Codes? Check-out ngx-kjua
FAQs
[![NPM version](https://img.shields.io/npm/v/ngx-zxing.svg?&label=npm)](https://www.npmjs.com/package/ngx-zxing) [![Downloads](https://img.shields.io/npm/dm/ngx-zxing.svg)](https://npmjs.org/package/ngx-zxing) [![Dependency Status](https://david-dm.org
The npm package ngx-zxing receives a total of 2 weekly downloads. As such, ngx-zxing popularity was classified as not popular.
We found that ngx-zxing 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.