- Notifications
You must be signed in to change notification settings - Fork77
Angular wrapper for js-data
License
js-data/js-data-angular
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Angular wrapper forjs-data.
Js-data-angular is Angular-data 2.0, withjs-data as the framework-agnostic core. Documentation for Angular-data 1.x can be found atangular-data.pseudobry.com.
- Angular + JSData (js-data-angular)
- Getting Started with js-data
- Resources/Models
- Working with the Data Store
- Adapters
- Query Syntax
- Model Lifecycle
- Custom Instance Behavior
- Computed Properties
- Relations
- Schemata & Validation
- JSData on the Server
- FAQ
- js-data-angular
- DS
- js-data-schema
- DSHttpAdapter
- DSLocalStorageAdapter
- DSLocalForageAdapter
- DSFirebaseAdapter
- DSRedisAdapter
- DSRethinkDBAdapter
- DSMongoDBAdapter
- DSSqlAdapter
Status:
Supported Platforms:
bower install --save js-data js-data-angular
ornpm install --save js-data js-data-angular
.
Loadjs-data-angular.js
afterjs-data.js
.
angular.module('myApp',['js-data']);
angular.module('myApp').factory('Post',function(DS){returnDS.defineResource('post');});angular.module('myApp').factory('Comment',function(DS){returnDS.defineResource('comment');});
app.controller('postCtrl',function($scope,$routeParams,Post,Comment){// it's up to your server to know how to interpret this query// or you can teach js-data how to understand your servers' query languagevarquery={postId:$routeParams.id};Post.find($routeParams.id);Comment.findAll(query);// My goodness this was easyPost.bindOne($routeParams.id,$scope,'post');Comment.bindAll(query,$scope,'comments');// Long form (same effect as above)$scope.$watch(function(){returnPost.lastModified($routeParams.id);},function(){$scope.post=Post.get($routeParams.id);});$scope.$watch(function(){// Changes when anything in the Comment collection is modifiedreturnComment.lastModified();},function(){$scope.comments=Comment.filter(query);});});
- Mailing List - Ask your questions!
- Issues - Found a bug? Feature request? Submit an issue!
- GitHub - View the source code for js-data.
- Contributing Guide
First, feel free to contact me with questions.Mailing List.Issues.
- Contribute to the issue that is the reason you'll be developing in the first place
- Fork js-data-angular
git clone https://github.com/<you>/js-data-angular.git
cd js-data-angular; npm install; bower install;
grunt go
(builds and starts a watch)- (in another terminal)
grunt karma:dev
(runs the tests) - Write your code, including relevant documentation and tests
- Submit a PR and we'll review
The MIT License (MIT)
Copyright (c) 2014-2015 Jason Dobry
Permission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in allcopies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THESOFTWARE.
About
Angular wrapper for js-data
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.