Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 925 Bytes

Readme.md

File metadata and controls

57 lines (39 loc) · 925 Bytes

Dropload

Drag and drop upload component.

Installation

$ component install component/dropload

Events

  • upload (upload) a file was dropped
  • text (string) string representation
  • url (string) url representation
  • html (string) html representation
  • drop (event) a drop was performed

Example

var Dropload = require('dropload');
var drop = Dropload(document.getElementById('drop'));

drop.on('error', function(err){
  console.error(err.message);
});

drop.on('upload', function(upload){
  console.log('uploading %s', upload.file.name);
  upload.to('/upload');
});

drop.on('text', function(str){
  console.log('text "%s"', str);
});

drop.on('url', function(str){
  console.log('url "%s"', str);
});

drop.on('html', function(str){
  console.log('html "%s"', str);
});

Running example

Run the Express test server:

$ npm install
$ make test

License

MIT