Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
ng2-validation
Advanced tools
Angular2 custom validation, inspired by jQuery validation.
npm install ng2-validation --save
First, you need use the latest form component, and disable deprecated forms.
import { bootstrap } from '@angular/platform-browser-dynamic';
import { disableDeprecatedForms, provideForms } from '@angular/forms';
import { AppComponent } from './src/app.component';
bootstrap(AppComponent, [
disableDeprecatedForms(),
provideForms(),
]).catch(err => console.error(err));
First, import CUSTOM_FORM_DIRECTIVES
and REACTIVE_FORM_DIRECTIVES
, add them to component directives config.
import { Component } from '@angular/core';
import { REACTIVE_FORM_DIRECTIVES, } from '@angular/forms';
import { CUSTOM_FORM_DIRECTIVES } from 'ng2-validation';
@Component({
selector: 'app',
template: require('./app.html'),
directives: [REACTIVE_FORM_DIRECTIVES, CUSTOM_FORM_DIRECTIVES]
})
export class AppComponent implements OnInit {
}
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" rangeLength="[5, 9]"/>
<p *ngIf="field.errors?.rangeLength">error message</p>
<input type="number" [(ngModel)]="model.field" name="field" #field="ngModel" min="10"/>
<p *ngIf="field.errors?.min">error message</p>
<input type="number" [(ngModel)]="model.field" name="field" #field="ngModel" max="20"/>
<p *ngIf="field.errors?.max">error message</p>
<input type="number" [(ngModel)]="model.field" name="field" #field="ngModel" range="[10, 20]"/>
<p *ngIf="field.errors?.range">error message</p>
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" digits/>
<p *ngIf="field.errors?.digits">error message</p>
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" number/>
<p *ngIf="field.errors?.number">error message</p>
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" url/>
<p *ngIf="field.errors?.url">error message</p>
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" email/>
<p *ngIf="field.errors?.email">error message</p>
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" date/>
<p *ngIf="field.errors?.date">error message</p>
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" dateISO/>
<p *ngIf="field.errors?.dateISO">error message</p>
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" creditCard/>
<p *ngIf="field.errors?.creditCard">error message</p>
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" json/>
<p *ngIf="field.errors?.json">error message</p>
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" base64/>
<p *ngIf="field.errors?.base64">error message</p>
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" phone="zh-CN"/>
<p *ngIf="field.errors?.phone">error message</p>
default: en-US
support
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" uuid="3"/>
<p *ngIf="field.errors?.uuid">error message</p>
default: all
support
<input type="text" [(ngModel)]="model.field" name="field" #field="ngModel" equal="xxx"/>
<p *ngIf="field.errors?.equal">error message</p>
used like angular2 build-in validators.
import { Component } from '@angular/core';
import { REACTIVE_FORM_DIRECTIVES, FormGroup, FormControl } from '@angular/forms';
import { CUSTOM_FORM_DIRECTIVES, CustomValidators } from 'ng2-validation';
@Component({
selector: 'app',
template: require('./app.html'),
directives: [REACTIVE_FORM_DIRECTIVES, CUSTOM_FORM_DIRECTIVES]
})
export class AppComponent {
form: FormGroup;
constructor() {
this.form = new FormGroup({
field: new FormControl('', CustomValidators.range([5, 9]))
});
}
}
<input type="text" [formControl]="form.controls.field"/>
<p *ngIf="form.controls.field.errors?.rangeLength">error message</p>
CustomValidators.rangeLength([5, 9])
CustomValidators.min(10)
CustomValidators.max(20)
CustomValidators.range([10, 20])
CustomValidators.digits
CustomValidators.number
CustomValidators.url
CustomValidators.email
CustomValidators.date
CustomValidators.dateISO
CustomValidators.creditCard
CustomValidators.json
CustomValidators.base64
CustomValidators.phonoe('zh-CN')
CustomValidators.uuid('3')
CustomValidators.equal('xxx')
MIT
FAQs
angular2 validation
The npm package ng2-validation receives a total of 7,160 weekly downloads. As such, ng2-validation popularity was classified as popular.
We found that ng2-validation 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.