jaffa
jaffa

Reputation: 27350

How do I build EmberJS app with REST-like back-end?

I've not looked into BackboneJS or EmberJS in detail, but as I understand, it is possible to have BackboneJS seamlessly work with a REST back-end. Whereas EmberJS doesn't seem to have anything I can use out of the box.

Can anyone offer any advice how to achieve this with EmberJS?

Upvotes: 0

Views: 626

Answers (3)

Flavio Copes
Flavio Copes

Reputation: 4359

If you just need a simple REST adapter without much complexity, then

https://github.com/cerebris/ember-rest

is great for the job.

Upvotes: 1

TD540
TD540

Reputation: 1760

I think you're looking for something like Ember-rails

https://github.com/emberjs/ember-rails

Upvotes: 0

Joachim H. Skeie
Joachim H. Skeie

Reputation: 1903

I've written an article about Ember.js on InfoQ, that goes through the basics. The article used Ember 0.9.5, so not everything will be working with the newest Ember 1.0-pre release.

It goes through the basic structure of an Ember-app as well as the very basics with Ember Data.

http://www.infoq.com/articles/emberjs

Upvotes: 0

Related Questions