Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

ng2-file-upload

valor-software399.1kMIT8.0.0TypeScript support: included

Angular file uploader

angular, upload file, ng, ng2, angular2

readme

ng2-file-upload npm version npm downloads

Easy to use Angular2 directives for files upload (demo)

Angular 2 Style Guide Build Status

Quick start

  1. A recommended way to install ng2-file-upload is through npm package manager using the following command:

    npm i ng2-file-upload

    Alternatively, you can download it in a ZIP file.

  2. Currently ng2-file-upload contains two directives: ng2-file-select and ng2-file-drop. ng2-file-select is used for 'file-input' field of form and ng2-file-drop is used for area that will be used for dropping of file or files.

  3. More information regarding using of ng2-file-upload is located in demo and demo sources.

Using ng2-file-upload in a project

  1. Install as shown in the above section.

  2. Import FileUploadModule into the module that declares the component using ng2-file-upload:

import { FileUploadModule } from 'ng2-file-upload';

  1. Add it to [imports] under @NgModule:

imports: [ ... FileUploadModule, ... ]

  1. Import FileUploader into the component:

import { FileUploader } from 'ng2-file-upload';

  1. Create a variable for the API url:

const URL = 'path_to_api';

  1. Initialize it:

public uploader:FileUploader = new FileUploader({url: URL});

API for ng2FileSelect

Properties

  • uploader - (FileUploader) - uploader object. See using in demo

Events

  • onFileSelected - fires when files are selected and added to the uploader queue

API for ng2FileDrop

Properties

  • uploader - (FileUploader) - uploader object. See using in demo

    Parameters supported by this object:

  • url - URL of File Uploader's route

  • authToken - Auth token that will be applied as 'Authorization' header during file send.
  • disableMultipart - If 'true', disable using a multipart form for file upload and instead stream the file. Some APIs (e.g. Amazon S3) may expect the file to be streamed rather than sent via a form. Defaults to false.
  • itemAlias - item alias (form name redefinition)
  • formatDataFunction - Function to modify the request body. 'DisableMultipart' must be 'true' for this function to be called.
  • formatDataFunctionIsAsync - Informs if the function sent in 'formatDataFunction' is asynchronous. Defaults to false.
  • parametersBeforeFiles - States if additional parameters should be appended before or after the file. Defaults to false.

Events

  • fileOver - it fires during 'over' and 'out' events for Drop Area; returns boolean: true if file is over Drop Area, false in case of out. See using in ts demo and html demo
  • onFileDrop - it fires after a file has been dropped on a Drop Area; you can pass in $event to get the list of files that were dropped. i.e. (onFileDrop)="dropped($event)"

Troubleshooting

Please follow these guidelines when reporting bugs and feature requests:

  1. Use GitHub Issues board to report bugs and feature requests (not our email address)
  2. Please always write steps to reproduce the error. That way we can focus on fixing the bug, not scratching our heads trying to reproduce it.

Thanks for understanding!

License

The MIT License (see the LICENSE file for the full text)

changelog

8.0.0 (2025-01-15)

  • Added angular 19 support

7.0.1 (2024-07-17)

Bug Fixes

  • dependencies: removed excessive parts from peerDependencies (3a7d086)

7.0.0 (2024-07-15)

Bug Fixes

  • dependencies: updated ngx-bootstrap and bootstrap (bce773c)
  • lint: updated lint (09d97db)
  • Added angular 18 support

6.0.0 (2024-07-02)

  • Added angular 17 support

5.0.0 (2023-07-21)

Features

3.0.0 (2022-12-12)

Bug Fixes

  • chore: fixed build in yml file (fc21870)
  • chore: updated publish yml file (4ee0638)
  • ci: fixed release yml file (6f5ac1c)

Features

3.0.0

Updated the library and test project to Angular 13

2.0.0-3 (2021-09-07)

Features

2.0.0-2 (2021-09-03)

2.0.0-1 (2021-09-03)

Features

2.0.0-0 (2021-09-03)

Bug Fixes

  • ci: fix xvfb service issue (33ac156)
  • typo: fix grammatical mistake in readme (#1119) (8171bc8)

Features

  • package: relaxed peer dependencies to allow ng v4 (#713) (7704e0e)

1.3.0 (2021-08-31)

Bug Fixes

  • ci: fix xvfb service issue (33ac156)
  • style: delete extra rule (b5917b9)
  • typo: fix grammatical mistake in readme (#1119) (8171bc8)

Features

  • bump: added strict mode, doesn't build in dist, should be resolved (69cd64d)
  • core: added nx (de738f7)
  • package: relaxed peer dependencies to allow ng v4 (#713) (7704e0e)
  • upgrade: updated up to angular 11 tests are failed (ce9dc20)

1.3.0 (2021-08-31)

Bug Fixes

  • ci: fix xvfb service issue (33ac156)
  • style: delete extra rule (b5917b9)
  • typo: fix grammatical mistake in readme (#1119) (8171bc8)

Features

  • bump: added strict mode, doesn't build in dist, should be resolved (69cd64d)
  • package: relaxed peer dependencies to allow ng v4 (#713) (7704e0e)
  • upgrade: updated up to angular 11 tests are failed (ce9dc20)

1.3.0 (2017-11-25)

Features

  • file-upload: Add response and function to modify the request body (#901)
  • file-upload add file type .zip (#911)

Bug Fixes

  • file-uploader Update: setOptions (#904)
  • docs Fix correct path for isHTML5 option (#844)
  • docs Added onFileDrop() event to documentation (#857)

1.2.1 (2017-04-10)

Features

  • package: relaxed peer dependencies to allow ng v4 (#713) (7704e0e)

1.2.0 (2017-01-17)

Bug Fixes

Features

1.1.3-0 (2016-10-19)

Bug Fixes

  • typing: added authTokenHeader property to options and file upload class (b55c852)

Features

  • build: added support for AoT and ng-cli (f0b2879), closes #436
  • file-upload: Add the possibility of set the token header (#213) (282295c)

1.1.2 (2016-10-17)

Features

  • package: allow of ng2 v2.0._ and v2._.* (87395e6)

1.1.1 (2016-10-17)

Bug Fixes

  • uploader: Add the ability to upload files via PUT instead of POST (#239) (e068511)
  • zone.js: error in Safari, Added Typings (#221) (db77e89)

Features

  • multipart: Create disableMultipart option in FileUploader (#224) (22307d2)
  • package: angular ~2.0.1 stable release (#425) (3fec385)
  • package: updated to typescript 2 (4fef496)

1.1.0 (2016-09-21)

Bug Fixes

  • uploader: Add the ability to upload files via PUT instead of POST (#239) (e068511)
  • zone.js: error in Safari, Added Typings (#221) (db77e89)

Features

  • multipart: Create disableMultipart option in FileUploader (#224) (22307d2)
  • package: updated to typescript 2 (4fef496)

1.0.3 (2016-05-12)

1.0.2 (2016-05-12)

Bug Fixes

  • upload: merge fix and get filters fix (ef6091c)

Chores

  • build: ng2 style guide applied (aee69d8)

Features

BREAKING CHANGES

  • directives and selectors renamed to ng2FileSelect and ng2FileDrop