Angular FilePond
Angular FilePond is a handy adapter component for FilePond, a JavaScript library that can upload anything you throw at it, optimizes images for faster uploads, and offers a great, accessible, silky smooth user experience.

Installation
Install FilePond component from npm.
npm install angular-filepond --save
Add FilePond
to an NgModule and if needed register any plugins. Please note that plugins need to be installed from npm separately.
; // Registering plugins;; // Adding FilePond to imports@
Add the FilePond stylesheet to your angular-cli.json
build script.
"styles":
Now FilePond can be used in your templates.
; @ myFiles = 'index.html'; // Allows us to get a reference to the FilePond instance @ myPond: any; { console; // FilePond instance methods are available on `this.myPond` }