tOlorun / ember-data-evolution

An experimental patch set for ember-data

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ember Data Warning

Ember Data Evolution Build Status

Ember Data is a library for loading data from a persistence layer (such as a JSON API), mapping this data to a set of models within your client application, updating those models, then saving the changes back to a persistence layer. It provides many of the facilities you'd find in server-side ORMs like ActiveRecord, but is designed specifically for the unique environment of JavaScript in the browser.

Ember Data provides a central Data Store, which can be configured with a range of provided Adapters, but two core Adapters are provided: the RESTAdapter and BasicAdapter.

The RESTAdapter is configured for use by default. You can read more about it in the Guides. It provides a fully RESTful mechanism for communicating with your persistence layer, and is the preferred and recommened choice for use with Ember Data.

The BasicAdapter is intended to provide a way for developers who want full control over how the persistence layer is communicated with via their own implemented Ajax hooks

This is definitely alpha-quality. The basics of RESTAdapter work, but there are for sure edge cases that are not yet handled. Please report any bugs or feature requests, and pull requests are always welcome. The BasicAdapter is under heavy development at present.

What is "Ember Data Evolution"?

It is a patch set maintained by me (@tchak). It contains some fixes and some new experimental features. It is not meant to be a fork. Evolution is regulary synced with the master of Ember Data. There is no guaranty on the api. All the features are meant to be merged in the main repo at some point.

What's new compared to Ember Data?

Is It Good?

Yes.

Is It "Production Ready™"?

It is used in production on Capitaine Train

Getting ember-data-evolution

The latest passing build from the "master" branch is available on tchak.net/ember-data-evolution

About

An experimental patch set for ember-data

License:MIT License