https://github.com/js-data/js-data-hal
HAL adapter for js-data
https://github.com/js-data/js-data-hal
Last synced: 4 months ago
JSON representation
HAL adapter for js-data
- Host: GitHub
- URL: https://github.com/js-data/js-data-hal
- Owner: js-data
- License: mit
- Created: 2014-10-04T17:11:38.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-04T17:45:53.000Z (over 10 years ago)
- Last Synced: 2024-12-28T10:42:41.755Z (6 months ago)
- Language: JavaScript
- Size: 131 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
## js-data-hal
Hal adapter for [js-data](http://www.js-data.io/js-data).
## API Documentation
[DSHalAdapter](https://github.com/js-data/js-data/wiki/DSHalAdapter)## Demo
[js-data-hal.firebaseapp.com/](https://js-data-hal.firebaseapp.com/)## Project Status
| Branch | Master |
| ------ | ------ |
| Bower | [](http://badge.fury.io/bo/js-data-hal) |
| NPM | [](http://badge.fury.io/js/js-data-hal) |
| Build Status | [](https://travis-ci.org/js-data/js-data-hal) |
| Code Climate | [](https://codeclimate.com/github/js-data/js-data-hal) |
| Dependency Status | [](https://gemnasium.com/js-data/js-data-hal) |
| Coverage | [](https://coveralls.io/r/js-data/js-data-hal?branch=master) |## Quick Start
`bower install --save js-data js-data-hal` or `npm install --save js-data js-data-hal`.Load `js-data-hal.js` after `js-data.js`.
```js
var adapter = new DSHalAdapter();var store = new JSData.DS();
store.registerAdapter('http', adapter, { default: true });// "store" will now use the hal adapter for all async operations
```## Changelog
[CHANGELOG.md](https://github.com/js-data/js-data-hal/blob/master/CHANGELOG.md)## Community
- [Mailing List](https://groups.io/org/groupsio/jsdata) - Ask your questions!
- [Issues](https://github.com/js-data/js-data-hal/issues) - Found a bug? Feature request? Submit an issue!
- [GitHub](https://github.com/js-data/js-data-hal) - View the source code for js-data.
- [Contributing Guide](https://github.com/js-data/js-data-hal/blob/master/CONTRIBUTING.md)## Contributing
First, feel free to contact me with questions. [Mailing List](https://groups.io/org/groupsio/jsdata). [Issues](https://github.com/js-data/js-data-hal/issues).
1. Contribute to the issue that is the reason you'll be developing in the first place
1. Fork js-data-hal
1. `git clone https://github.com//js-data-hal.git`
1. `cd js-data-hal; npm install; bower install;`
1. `grunt go` (builds and starts a watch)
1. (in another terminal) `grunt karma:dev` (runs the tests)
1. Write your code, including relevant documentation and tests
1. Submit a PR and we'll review## License
The MIT License (MIT)
Copyright (c) 2014 Jason Dobry
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.