Connect REST'ful API's to your Angular App
Resourceful.js is designed with the following goals:
- Up-front configuration. Define your resources once and re-use them again and again.
```
var User = Resourceful.resource('users');
var Message = User.resource('messages');
```
- Simple find/create symantics for manipulating resources:
```
var user = User.find(2);
user.name = 'joey';
user.save();
user.messages.create({body: 'Hello'})
```
- Creating services for your resources is trivial
```
factory('User', [function(Resourceful){
return Resourceful.resource('users');
})
```
- Built-in support for singular resources (http://guides.rubyonrails.org/v2.3.11/routing.html#singular-resources)
npm install
bower install
karma start test/karma.js
TBD. See src/resourceful.js for current WIP