Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

filefog

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

filefog

Cloud Storage API Wrapper supporting Box, Dropbox, Skydrive, Google Drive

  • 0.0.19
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
21
increased by425%
Maintainers
1
Weekly downloads
 
Created
Source

#var FileFog = require('filefog')

There are many cloud storage options for consumers. However each provider has their own API and API design philosophy, making it harder for developers to easily integrate their applications.

The idea behind FileFog is to provide a single consistent, promise-based API for developers to access user uploaded data, without having to worry about differing OAuth implementations, base urls or data parsing.

The FileFog philosophy is as follows:

  • Don't reinvent the wheel - if a native library is available for NodeJS, use it. All we need to do then is wrap the required methods to create a consistent user experience, and let the API designers themselves deal with most fo the implementation details.
  • Avoid Callback Hell - Javascript and most libraries built on-top of it heavily make use of callbacks. While this is perfectly fine for some, I prefer the Promise design pattern for its reliability, simplicity and synchronous feel when working with pseudo-filesystems.

WARNING

Please note that this package is under heavy development, and the unified API may change unexpectedly. Once the API is stable, a version 1.0 will be released on NPM.

Providers

Initally FileFog will be released with only support for the following popular Cloud Services.

  • Google
  • SkyDrive
  • Dropbox
  • Box.net
  • Local filesystem

Providers for the following Cloud Services are also planned:

  • Amazon S3
  • Microsoft Azure Storage
  • Bittorrent Sync
  • AnyCloud
  • FTP
  • WebDAV

Usage

var filefog = require('filefog')

Quick Start

var filefog = require('filefog')

//This registration only needs to be done once.
filefog.use('dropbox', require('filefog-dropbox'), {client_key : '...',client_secret : '...'});;


//create a dropbox provider and client using previously saved access_tokens
//call dropboxProvider.oAuthGetAuthorizeUrl() if you do not have access_tokens already.
//var dropboxProvider = filefog.provider("dropbox")
//dropboxProvider.oAuthGetAuthorizeUrl()

dropboxClient = filefog.client("dropbox", {
    access_token: '...',
    refresh_token: '...'
})
.then(function (client) {
    return client.getFolderInformation();
}).then(function (response) {
    //Dropbox folder metadata, in a standardized format.
})

Documentation

The docs are currently out of date, and as this library is underdevelopment and the API is not yet stable, this won't change for the forseeable future.

TODO's

  • Docs
  • Search method
  • Update method
  • state - built-in state antiforgery token support.

FAQs

Package last updated on 16 Nov 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc