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.
ngx-barcodeput
Advanced tools
Formerly called ngx-barcodeput
Angular directive for handling input events. Useful for determine input using a barcode-scanner.
Like binding to a regular type
event in a template, you can do something like this:
<input ngxBarCodePut
(onDetected)="onDetected($event)">
npm install --save ngx-barcodeput
Add NgxBarCodePutModule
to your list of module imports:
import { NgxBarCodePutModule } from 'ngx-barcodeput';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, FormsModule, NgxBarCodePutModule],
bootstrap: [AppComponent]
})
class AppModule {}
You can then use the directive in your templates:
@Component({
selector: 'app',
template: `
<input type="text"
ngxBarCodePut
maxlength="14"
[debounce]="300"
autocomplete="off"
[skipStartLength]="5"
(onDetected)="onDetected($event)"
(onBackspace)="onBackspace($event)">
`
})
export class AppComponent {
public onDetected(event: IDetect) {
console.log(event.type, event.time, event.value);
}
public onBackspace(event: IBackspace) {
console.log(event.code, event.keyName, event.value);
}
}
Property name | Type | Default | Description |
---|---|---|---|
debounce | number | 0 | This property is necessary for scenarios such as type-ahead where the rate of user input must be controlled. |
skipStart | number | 0 | Allows you to ignore the first values of the length of the input data. The search begins after entering the first character if the value is 0. |
onDetected | event | empty | Returns object with input value, data entry time and device type: keyboard, scanner or enter key . |
onBackspace | event | empty | Returns the object with input value, the code and name of the backspace key. |
FAQs
This package helps determine input using a barcode-scanner.
The npm package ngx-barcodeput receives a total of 138 weekly downloads. As such, ngx-barcodeput popularity was classified as not popular.
We found that ngx-barcodeput 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.