filepicker.js

0.0.4 • Public • Published

filepicker.js

A Node.js Filepicker Library, with streaming

Installation

$ npm install filepicker.js

Instantiation

var Filepicker = require('filepicker.js');
var filepicker = new Filepicker('YOUR_API_KEY');

Methods

  1. store

    • Stores a file into filepicker and passes the url in the response
    filepicker.store("test", {persist:true}, function(err, url) {
    	console.log(url);
    });
  2. read

    • Reads a file from filepicker and passes the contents in the callback
      • For now uses utf8
        filepicker.read(url, {}, function(err,data){
          console.log(data);
        });
  3. stream

    • see examples/stream.coffe
    • see examples/stream.js

/filepicker.js/

    Package Sidebar

    Install

    npm i filepicker.js

    Weekly Downloads

    0

    Version

    0.0.4

    License

    MIT

    Last publish

    Collaborators

    • sourcec0de