0.7.5 • Published 9 years ago

drbx-js-backbone v0.7.5

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

#drbx-js-backbone

Join the chat at https://gitter.im/moszeed/drbx-js-backbone
a promise wrapper for backbone, to sync to a dropbox account

#how to use install from npm

npm i drbx-js-backbone

and require like this

var Backbone = require('drbx-js-backbone);

##usage examples ####init, with popup driver and login

var Backbone = require('drbx-js-backbone);
    Backbone.init({
        client  : { key : [Dropbox API Key] },
        auth    : new Dropbox._Dropbox.AuthDriver.Popup({
            receiverUrl     : [receiverUrl],
            rememberUser    : true
        })
    });

    Backbone.login()
        .then(function isLoggedIn() {
            console.log('user is logged in');
        })
        .catch(function(err) {
            console.log(err);
        });

####get accountInfo

Backbone.DrbxJs.accountInfo()
    .then(function getUserData(userData) {
        console.log(userData);
    })
    .catch(function(err) {
        console.log(err);
    });

####create a model

var Model = new Backbone.Model.extend({
	url: '/path/to/file'
});

####create a collection

var Collection = new Backbone.Collection.extend({
	url: '/path/to/file'

model: Model });

0.7.5

9 years ago

0.7.4

9 years ago

0.7.3

9 years ago

0.7.2

9 years ago

0.7.1

9 years ago

0.7.0

9 years ago