Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
ngx-barcode-scanner
Advanced tools
[![npm version](https://badge.fury.io/js/ngx-barcode-scanner.svg)](https://www.npmjs.com/ngx-barcode-scanner) [![devDependency Status](https://david-dm.org/julienboulay/ngx-barcode-scanner/dev-status.svg)](https://david-dm.org/julienboulay/ngx-barcode-sca
Coming soon...
Install through npm:
npm install --save quagga ngx-barcode-scanner
//demo.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BarecodeScannerLivestreamModule } from 'ngx-barcode-scanner';
import { Demo } from './demo.component';
@NgModule({
declarations: [Demo],
imports: [
BrowserModule,
BarecodeScannerLivestreamModule
],
bootstrap: [Demo]
})
export class DemoModule {}
This component creates a barcode scanner
//demo.component.ts
import { Component, ViewChild, AfterViewInit } from '@angular/core';
import { BarecodeScannerLivestreamComponent } from 'ngx-barcode-scanner';
@Component({
selector: 'demo-app',
template: `
<barcode-scanner-livestream type="code_128" (valueChanges)="onValueChanges($event)"></barcode-scanner-livestream>
<div [hidden]="!barcodeValue">
{{barcodeValue}}
</div>
`
})
export class Demo implements AfterViewInit{
@ViewChild(BarecodeScannerLivestreamComponent)
BarecodeScanner: BarecodeScannerLivestreamComponent;
barcodeValue;
ngAfterViewInit() {
this.BarecodeScanner.start();
}
onValueChanges(value){
this.barcodeValue = value.code;
}
}
Run npm run start
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run npm run test
to execute the unit tests via Karma.
Run npm run e2e
to execute the end-to-end tests via Protractor.
Before running the tests make sure you are serving the app via ng serve
.
Run npm run build
to build the project. The build artifacts will be stored in the dist/
directory.
Run npm run package
to package the project.
The project can then be installed with npm install <relative_dir>/dist/ngx-barcode-scanner-<version>.tgz
npm login
npm run release
MIT
FAQs
Angular components for [QuaggaJS](https://serratus.github.io/quaggaJS/) barcode reader. It uses the new [Quagga2](https://github.com/ericblade/quagga2) supported version. Supporting Angular 10+
The npm package ngx-barcode-scanner receives a total of 2,752 weekly downloads. As such, ngx-barcode-scanner popularity was classified as popular.
We found that ngx-barcode-scanner 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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.