angular-wakanda
v1.3.0
Published
Use your Wakanda backend with Angular
Downloads
5
Keywords
Readme
angular-wakanda - v1.3.0
This repo is for distribution on bower
and npm
. You can check out 10 minutes quickstart to learn how to user angular-wakanda.
The sources for this module are in the main Wakanda/sources-angular-wakanda repo. Please file pull requests against that repo and issues on Wakanda/wakanda-issues.
Install
Install with bower:
bower install angular-wakanda
Or via npm
npm install angular-wakanda
Add a <script>
tag to your index.html
:
<script src="/bower_components/angular/angular.min.js"></script>
<script src="/bower_components/angular-wakanda/angular-wakanda.min.js"></script>
Add wakanda
as a dependency for your app:
angular.module('myApp', ['wakanda']);
And finally use the $wakanda
injected factory:
$wakanda.init().then(function (ds) {
$scope.contacts = ds.Contact.$all();
});
Resources
License
Wakanda® is a registered trademark of WAKANDA SAS in France and/or other countries. All other names mentioned may be trademarks or registered trademarks of their respective owners.
The MIT License
Copyright (c) 2016 WAKANDA S.A.S.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 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 THE SOFTWARE.