Skip to content

keithio/parse-angular-patch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Parse Angular Patch

Brought to you by the BRANDiD team

  • Seamless Parse integration with AngularJS, using promises ($q)
  • Never worry about $scope digests again
  • Additional (and optional) module to enhance Parse Objects and Collections

Install

Option 1

Install via Bower:

bower install parse-angular-patch

Option 2

Grab the latest version of the patch: parse-angular.min.js

##How to use

Include the module in your project:

angular.module('myApp', ['ngAnimate', 'parse-angular'])

That's it. How hard was that?! You can now do ANYWHERE in your angular app things such as:

// Queries
var query = new Parse.Query("Monsters");
query.equalTo("name", "Frankeistein");
query.first()
.then(function(result){
        $scope.monsters = result;
});
// Cloud Code is patched too!
Parse.Cloud.run("myCloudCodeFunction", function(results) {
    $scope.data = results;
});

And your scope will always be updated.

Wanna build a large Parse+Angular app?

Wait no more and check our parse-angular-demo project

BRANDiD <3 Developers

You'd rather be coding than shopping? We get the feeling. Let our team hook you up with the easiest online shopping experience for men.

Let's do that

License

MIT

About

Seamless patch for Parse to work natively with Angular

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%