Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@iplab/ngx-file-upload
Advanced tools
Angular module used for file upload.
more detailed instructions can be found here
npm install @iplab/ngx-file-upload
Use the following snippet inside your app module:
import { ReactiveFormsModule, FormsModule } from '@angular/forms';
import { FileUploadModule } from '@iplab/ngx-file-upload';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
...
...
@NgModule({
imports: [
BrowserModule,
ReactiveFormsModule,
FormsModule,
FileUploadModule,
BrowserAnimationsModule // or use NoopAnimationsModule
],
bootstrap: [AppComponent]
})
export class AppModule {}
Use the following snippet inside your component:
import { FileUploadControl, FileUploadValidators } from '@iplab/ngx-file-upload';
@Component({
selector: `app-root`,
template: `<file-upload [control]="fileUploadControl"></file-upload>`
})
export class AppComponent {
public fileUploadControl = new FileUploadControl(null, FileUploadValidators.filesLimit(2));
constructor() {
}
}
With angular reactive form you can use the following snippet:
import { FileUploadValidators } from '@iplab/ngx-file-upload';
@Component({
selector: `app-root`,
template: `
<form [formGroup]="demoForm">
<file-upload formControlName="files"></file-upload>
</form>`
})
export class AppComponent {
private filesControl = new FormControl(null, FileUploadValidators.filesLimit(2));
public demoForm = new FormGroup({
files: this.filesControl
});
constructor() {
}
}
With angular template driven form you can use the following snippet:
@Component({
selector: `app-root`,
template: `
<form #demoForm="ngForm">
<file-upload [(ngModel)]="uploadedFiles" name="files" fileslimit="2"></file-upload>
</form>`
})
export class AppComponent {
public uploadedFiles: Array<File> = [];
}
This project was generated with Angular CLI version 11.0.0.
Angular CLI must be installed before building @iplab/ngx-file-upload project.
npm install -g @angular/cli
git clone https://github.com/pIvan/file-upload.git
cd file-upload/
npm install
npm run start
Open "http://localhost:4200" in browser
We use SemVer for versioning. For the versions available, see the link to tags on this repository.
This project was generated with Angular CLI version 11.0.0.
Angular CLI must be installed before testing @iplab/ngx-file-upload project.
npm install -g @angular/cli
git clone https://github.com/pIvan/file-upload.git
cd file-upload/
npm install
npm run test
Want to file a bug, contribute some code, or improve documentation? Excellent! Read up on our contributing guide and then check out one of our issues.
@iplab/ngx-file-upload is freely distributable under the terms of the MIT license.
FAQs
> Angular module used for file upload.
The npm package @iplab/ngx-file-upload receives a total of 5,334 weekly downloads. As such, @iplab/ngx-file-upload popularity was classified as popular.
We found that @iplab/ngx-file-upload demonstrated a healthy version release cadence and project activity because the last version was released less than 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
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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.