Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Javascript support library for html5 file API and upload?

until now I was using flash based swfupload and its swfupload.js which provides users with callbacks from flash and a possibility to set it up.

I was wondering if there is anything like this for HTML5 File API. I'm asking before I make it from scratch myself. I don't want to reinvent a wheel when there might be a good library out there already.

like image 506
lisak Avatar asked May 17 '11 10:05

lisak


People also ask

How do I use an API file?

The user interface for selection can be invoked via <input type="file"> , i.e. when the input element is in the File Upload state [HTML]. A Blob interface, which represents immutable raw binary data, and allows access to ranges of bytes within the Blob object as a separate Blob .

How do I use Filepond?

Create a directory and call it /filepond. Now go to the directory on the command line and type npm init . Accept all the defaults. Now install the Express server with npm install express .

What are JavaScript files?

The File interface provides information about files and allows JavaScript in a web page to access their content. File objects are generally retrieved from a FileList object returned as a result of a user selecting files using the <input> element, or from a drag and drop operation's DataTransfer object.


1 Answers

I've played with this in the past: http://aquantum-demo.appspot.com/file-upload

Seemed reasonable for what I was doing.

like image 66
John Green Avatar answered Oct 06 '22 00:10

John Green