Uppy

Uppy is a sleek and modular file uploader. It fetches files from local disk, Google Drive, Instagram, remote urls, cameras etc, and then uploads them to the final destination. It’s fast, has a comprehensible API and lets you worry about more important problems than building a file uploader. For more details

HTML Code
  <uppy-dashboard [uppy]='uppy' ></uppy-dashboard>
Script
import { Uppy } from '@uppy/core'

export class UppyComponent implements OnInit {
  uppy: Uppy = new Uppy({ debug: true, autoProceed: true })
  constructor() { }
  ngOnInit(): void {
  }
}