- 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.
Angular-data is deprecated. js-data + js-data-angular is the new hotness.
- 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);});});
- Slack Room - Better than IRC!
- Announcements
- 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, support is handled via theGitter Channel and theMailing List. Ask your questions there.
When submitting issues on GitHub, please include as much detail as possible to make debugging quick and easy.
- good - Your versions of Angular, js-data, js-data-angular, etc., relevant console logs/error, code examples that revealed the issue
- better - Aplnkr,fiddle, orbin that demonstrates the issue
- best - A Pull Request that fixes the issue, including test coverage for the issue and the fix
- Contribute to the issue/discussion that is the reason you'll be developing in the first place
- Fork js-data-angular
git clone git@github.com:<you>/js-data-angular.git
cd js-data-angular; npm install; bower install;
- Write your code, including relevant documentation and tests
- Run
grunt test
(build and test) - Your code will be linted and checked for formatting, the tests will be run
- The
dist/
folder & files will be generated, do NOT commitdist/*
! They will be committed when a release is cut. - Submit your PR and we'll review!
- Thanks!
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.