Library QuickStart package.json from the documentation, supplemented with testing support
npm install a-dropzoneAngular lib wrapper for Dropzonejs
```
npm install --save a-dropzone
import { ADropzoneModule } from 'a-dropzone';
@NgModule({
...
imports:[ADropzoneModule]
...
})
`
2. Include the js and the css in your .angular-cli.json
`
...
"styles": [
"../node_modules/dropzone/dist/dropzone.css"
],
"scripts": [
"../node_modules/dropzone/dist/dropzone.js"
]
...
` 3. Use it in the component
`
` 4. All catch all events easy, if you want to catch addedfile event just call the output:
`
``You can set any dropzone option in [Dropzone Docs] (http://www.dropzonejs.com/)