Coder Social home page Coder Social logo

data's Introduction

Ember Data Build Status

Ember Data is a library for robustly managing model data in your Ember.js applications.

Ember Data is designed to be agnostic to the underlying persistence mechanism, so it works just as well with JSON APIs over HTTP as it does with streaming WebSockets or local IndexedDB storage.

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.

In particular, Ember Data uses Promises/A+-compatible promises from the ground up to manage loading and saving records, so integrating with other JavaScript APIs is easy.

Using Ember Data

Getting Ember Data

bower install ember-data --save

The latest passing build from the "master" branch is available on http://emberjs.com/builds/#/canary.

Similarly, the latest passing build from the "beta" branch can be found on http://emberjs.com/builds/#/beta

Or build ember-data.js yourself. Clone the repository and run npm run dist after setup. You'll find ember-data.js in the dist directory.

Internet Explorer 8

If you need to support Internet Explorer, you will need to use es5-shim.js and es5-sham.js from es5-shim.

Instantiating the Store

In Ember Data, the store is responsible for managing the lifecycle of your models. Every time you need a model or a collection of models, you'll ask the store for it.

To create a store, you don't need to do anything. Just by loading the Ember Data library, all of the routes and controllers in your application will get a new store property. This property is an instance of DS.Store that will be shared across all of the routes and controllers in your app.

Defining Your Models

First thing's first: tell Ember Data about the models in your application. For example, imagine we're writing a blog reader app. Here's what your model definition would look like if you're using globals (that is, not something like Ember App Kit or ember-cli):

var attr = DS.attr,
    hasMany = DS.hasMany,
    belongsTo = DS.belongsTo;

App.BlogPost = DS.Model.extend({
  title: attr(),
  createdAt: attr('date'),

  comments: hasMany('comment')
});

App.Comment = DS.Model.extend({
  body: attr(),
  username: attr(),

  post: belongsTo('blogPost')
});

If you're using ES6 modules (via Ember App Kit or ember-cli), your models would look like this:

// app/models/blog-post.js
var attr = DS.attr,
    hasMany = DS.hasMany;

export default DS.Model.extend({
  title: attr(),
  createdAt: attr('date'),

  comments: hasMany('comment')
});

// app/models/comment.js
var attr = DS.attr,
    belongsTo = DS.belongsTo;

export default DS.Model.extend({
  body: attr(),
  username: attr(),

  post: belongsTo('blogPost')
});

A Brief Note on Adapters

Without immediately diving in to the depths of the architecture, one thing you should know is that Ember Data uses an object called an adapter to know how to talk to your server.

An adapter is just an object that knows how to translate requests from Ember Data into requests on your server. For example, if I ask the Ember Data store for a record of type person with an ID of 123, the adapter translates that into an XHR request to (for example) api.example.com/v3/person/123.json.

By default, Ember Data will use the RESTAdapter, which adheres to a set of RESTful JSON conventions.

Ember Data also ships with the FixtureAdapter, useful for testing and prototyping before you have a server, and the ActiveModelAdapter, which is designed to work out-of-the-box with the ActiveModel::Serializers gem for Rails.

To learn more about adapters, including what conventions the RESTAdapter follows and how to build your own, see the Ember.js Guides: Connecting to an HTTP Server.

Fetching a Collection of Models

From your route or controller:

this.store.find('blogPost');

This returns a promise that resolves to the collection of records.

Fetching a Single Model

this.store.find('blogPost', 123);

This returns a promise that resolves to the requested record. If the record can't be found or there was an error during the request, the promise will be rejected.

Even More Documentation

For much more detail on how to use Ember Data, see the Ember.js Guides on models.

API Stability

Ember Data is still under active development and is currently beta quality. That being said, the API has largely stabilized and many companies are using it in production.

For details on anticipated changes before the 1.0 release, see the blog post The Road to Ember Data 1.0.

How to Run Unit Tests

Setup

  1. Install Node.js from http://nodejs.org or your favorite package manager.

  2. Install broccoli and bower. npm install -g ember-cli bower

  3. Run npm install inside the project root to install the JS dependencies.

In Your Browser

  1. To start the development server, run npm start.

  2. Visit http://localhost:4200

From the CLI

  1. Install phantomjs from http://phantomjs.org

  2. Run npm test

data's People

Contributors

stefanpenner avatar wycats avatar igort avatar tomdale avatar rwjblue avatar wagenet avatar tchak avatar tricknotes avatar bradleypriest avatar bmac avatar fivetanley avatar sly7-7 avatar pangratz avatar teddyzeenny avatar ebryn avatar ghempton avatar abuiles avatar joliss avatar lukemelia avatar mixonic avatar pixelhandler avatar enyo avatar dgeb avatar ppcano avatar rondale-sc avatar thomasboyt avatar trek avatar cyril-sf avatar bcardarella avatar tstirrat avatar

Watchers

Omar Estrella avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.