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 via Bower:
bower install parse-angular-patchGrab 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.
Wait no more and check our parse-angular-demo project
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.
MIT