upload-component

0.1.1 • Public • Published

upload

file upload and progress api

Installation

$ component install component/upload

Events

  • error an error occurred
  • abort upload was aborted
  • progress (e) upload in progress (e.percent, e.totalSize etc)
  • end upload is complete

API

Upload(file)

Initialize an Upload with the given file, where file is a File object, for example from a input.files[0] FileList.

var upload = new Upload(file);
var upload = Upload(file);

Upload#to(path, [fn])

POST the multipart upload to path and invoke fn(err, res).

upload.to('/upload');
upload.on('progress', reportProgress);
upload.on('end', done);

Running tests

Run the Express test server:

$ npm install
$ make test

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i upload-component

Weekly Downloads

5

Version

0.1.1

License

none

Last publish

Collaborators

  • tjholowaychuk