0.0.0 • Published 13 years ago
filepicker-node v0.0.0
filepicker-node
A Node.js Filepicker Library
Installation
$ npm install filepickerInstantiation
var Filepicker = require('filepicker-node');
var filepicker = new Filepicker('YOUR_API_KEY');Methods
store- Stores a file into filepicker and passes the url in the response
filepicker.store("test", {persist:true}, function(err, url) { console.log(url); });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); });- Reads a file from filepicker and passes the contents in the callback
0.0.0
13 years ago