An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

js-data logo

## 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 | [![Bower version](https://badge.fury.io/bo/js-data-hal.png)](http://badge.fury.io/bo/js-data-hal) |
| NPM | [![NPM version](https://badge.fury.io/js/js-data-hal.png)](http://badge.fury.io/js/js-data-hal) |
| Build Status | [![Build Status](https://travis-ci.org/js-data/js-data-hal.png?branch=master)](https://travis-ci.org/js-data/js-data-hal) |
| Code Climate | [![Code Climate](https://codeclimate.com/github/js-data/js-data-hal.png)](https://codeclimate.com/github/js-data/js-data-hal) |
| Dependency Status | [![Dependency Status](https://gemnasium.com/js-data/js-data-hal.png)](https://gemnasium.com/js-data/js-data-hal) |
| Coverage | [![Coverage Status](https://coveralls.io/repos/js-data/js-data-hal/badge.png?branch=master)](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.