Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ember-links/list
A curated list of useful EmberJS links.
https://github.com/ember-links/list
Last synced: 7 days ago
JSON representation
A curated list of useful EmberJS links.
- Host: GitHub
- URL: https://github.com/ember-links/list
- Owner: ember-links
- Created: 2014-09-28T10:37:19.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-05-06T08:45:51.000Z (over 8 years ago)
- Last Synced: 2024-08-02T05:15:11.166Z (3 months ago)
- Size: 20.5 KB
- Stars: 146
- Watchers: 15
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- fucking-lists - ember-links/list
- awesomelist - ember-links/list
- collection - ember-links/list
- lists - ember-links/list
README
# Ember.js Links
> A curated list of EmberJS resources. I'll do my best to keep it up to date but please feel free to contribute if you have any links you feel are worth including here.
- [Ember.js Links](#emberjs-links)
- [Basics](#basics)
- [Ember Object](#ember-object)
- [Observers](#observers)
- [Computed Properties](#computed-properties)
- [Arrays](#arrays)
- [Initializers & Environment Data](#initializers--environment-data)
- [Dependency Injection & Service Lookup](#dependency-injection--service-lookup)
- [Managing Asynchrony](#managing-asynchrony)
- [Templates](#templates)
- [Routing](#routing)
- [Controllers](#controllers)
- [Models](#models)
- [Ember Data](#ember-data)
- [Serialization](#serialization)
- [Error Handling](#error-handling)
- [Alternatives to Ember Data](#alternatives-to-ember-data)
- [Components](#components)
- [Modals](#modals)
- [Testing](#testing)
- [The Run Loop](#the-run-loop)
- [Performance](#performance)
- [Working with 3rd party libraries](#working-with-3rd-party-libraries)
- [Animation](#animation)
- [Authentication](#authentication)
- [Data Visualization & D3](#data-visualisation--d3)
- [Working With Files](#working-with-files)
- [Debugging](#debugging)
- [Build Tools](#build-tools)
- [Ember CLI](#ember-cli)
- [Ember CLI Addons](#ember-cli-addons)
- [Backend Integration](#backend-integration)
- [Rails](#rails)
- [Firebase](#firebase)
- [Websockets](#websockets)
- [Go](#go)
- [Middleman](#middleman)
- [PubNub](#pubnub)
- [Deployment](#deployment)
- [SEO](#seo--analytics)
- [Other Libraries](#other-libraries)
- [Books](#books)
- [Other sites for resources](#other-sites-for-resources)
- [Misc Ember Links](#misc-ember-links)## Basics
> Useful resources for getting started with Ember.js* [Ember.js Official Documentation - Getting Started](http://emberjs.com/guides/getting-started/)
* [Codeschool - Warming Up With Ember.js](https://www.codeschool.com/courses/warming-up-with-ember-js)
* [Avoiding Common Pitfalls in Ember.js](http://www.slideshare.net/AlexSpeller/avoiding-common-pitfalls-in-emberjs)
* [Vic Ramon's Ember Tutorial](http://ember.vicramon.com/)
* [An Ember.js beginners tutorial](http://williamhart.info/an-emberjs-beginners-tutorial.html)
* [Building Modern Javascript Applications With Ember.js](http://slides.com/samselikoff/building-modern-js-apps-with-emberjs#/)
* [Mastering Ember.js](https://www.youtube.com/playlist?list=PL0nNJgE19Y-js_1XHA5QdEU1ed_ldOaks)
* [Resources for Getting Started with Ember.js](http://spin.atomicobject.com/2013/09/15/ember-js-resources/)
* [An In-Depth Introduction To Ember.js](http://www.smashingmagazine.com/2013/11/07/an-in-depth-introduction-to-ember-js/)
* [Things I wish someone had told me when I was learning Ember.js](http://landongn.com/ember/things-i-wish-someone-had-told-me-when-i-was-learning-ember-js/)## Ember Object
> Useful resources for the Ember object model* [Ember.js Official Documentation - The Object Model](http://emberjs.com/guides/object-model/classes-and-instances/)
* [Practical Abstraction in Ember.js](http://spin.atomicobject.com/2013/12/02/emberjs-abstraction)
* [Effortless Abstraction with Ember.js](http://spin.atomicobject.com/2013/04/14/effortless-abstraction-ember/)
* [Ember.js getters and setters](http://balinterdi.com/2014/03/19/ember-dot-js-getters-and-setters.html)
* [What the hell is Ember.K?](http://ember.zone/what-the-hell-is-ember-k/)
* [Ember Object Self Troll](http://reefpoints.dockyard.com/2014/04/17/ember-object-self-troll.html)
* [Ember Works Best When You Tell Instead Of Ask](http://ember.zone/ember-works-best-when-you-tell-instead-of-ask/)### Observers
* [Dynamic Binding in Ember.js Using Observers](http://spin.atomicobject.com/2013/05/12/dynamic-ember-js-binding-observers/)
* [Debounced and Throttled Observers in Ember.js](http://alexspeller.com/debounced-and-throttled-observers-in-ember-js/)
* [Reactive Modeling with Ember](http://frontside.io/blog/2014/09/21/reactive-modeling-with-ember.html)### Computed Properties
* [Computed Properties in Ember.Js](http://reefpoints.dockyard.com/2013/09/04/computed_properties_in_ember_js.html)
* [Ember.js - Taming computed properties](http://ugisozols.com/blog/2013/10/17/emberjs-taming-computed-properties/)
* [Make your own computed property macro in Ember.js](http://balinterdi.com/2014/05/22/make-your-own-computed-property-macro-in-emberjs.html)
* [ember.js - Computed Property for All Keys of an Object](http://www.thesoftwaresimpleton.com/blog/2014/03/11/cp-all-keys/)
* [Ember.js - Creating Computed Properties at Runtime](http://www.thesoftwaresimpleton.com/blog/2013/08/11/dyanamic-cp/)
* [Observable Path Patterns in Ember](http://balinterdi.com/2014/03/26/property-path-patterns-in-ember-dot-js.html)
* [Creating Computed Macros in ember.js](http://www.thesoftwaresimpleton.com/blog/2013/04/27/macro/)
* [How to optimize inefficient computed properties in Ember.js](http://dev.billysbilling.com/blog/How-to-optimize-inefficient-computed-properties-in-Ember-js)### Arrays
* [Sorting arrays in Ember.js by various criteria](http://balinterdi.com/2014/03/05/sorting-arrays-in-ember-dot-js-by-various-criteria.html)
* [Emberjs - arrayComputed](http://www.thesoftwaresimpleton.com/blog/2014/02/04/array-computed/)
* [Ember.js - reduceComputed and Property Brace Expansion](http://www.thesoftwaresimpleton.com/blog/2014/02/19/reduce-computed/)### Initializers & Environment Data
* [Ember Application Initializers](http://ember.zone/ember-application-initializers/)
* [Ember.js Initializers](http://nerdyworm.com/blog/2013/04/03/ember-initializers/)
* [Handling environment data with Ember.js](http://ember.zone/handling-environment-data-with-ember-js/)### Dependency Injection & Service Lookup
* [Ember.js Official Documentation - Dependency Injection & Service Lookup](http://emberjs.com/guides/understanding-ember/dependency-injection-and-service-lookup/)
* [Dependency injection in Ember.js - Going deeper](http://balinterdi.com/2014/05/16/dependency-injection-in-ember-dot-js-going-deeper.html)
* [Learning to Love Ember’s Dependency Injection](http://spin.atomicobject.com/2014/09/04/ember-dependency-injection/)
* [Dependency injection in Ember.js - First steps](http://balinterdi.com/2014/05/01/dependency-injection-in-ember-dot-js.html)
* [Beginning to understand the Ember.js Container](http://ember.zone/beginning-to-understand-the-ember-js-container/)
* [How Ember.js Finds Stuff](http://ember.zone/how-ember-js-finds-stuff/)## Managing Asynchrony
> Useful resources on working with asynchrony including promises* [Ember.js Official Documentation - Managing Asynchrony](http://emberjs.com/guides/understanding-ember/managing-asynchrony/)
* [Ember.js Official Documentation - Asynchronous Routing](http://emberjs.com/guides/routing/asynchronous-routing/)
* [Promises instead of callbacks](http://balinterdi.com/2014/01/21/promises-instead-of-callbacks.html)
* [How real-time updates work in Discourse](http://balinterdi.com/2014/01/14/how-real-time-updates-work-in-discourse.html)
* [User-friendly live collections in Ember.js](http://joefiorini.com/posts/user-friendly-live-collections-in-emberjs)
* [A Live Polling System In Ember.js](http://yoranbrondsema.com/live-polling-system-ember-js/)
* [Don’t let Ember.js swallow errors in your promises](http://ianpetzer.wordpress.com/2013/07/24/dont-let-ember-js-swallow-errors-in-your-promises/)## Templates
* [Ember.js Official Documentation - Templates](http://emberjs.com/guides/templates/the-application-template/)
* [Hidden features of the #each helper](http://ember.guru/2014/hidden-features-of-the-each-aka-loopedy-loop-helper)
* [Ember: Getting the index in #each loops](http://mozmonkey.com/2014/03/ember-getting-the-index-in-each-loops/)
* [Ember.js - Creating a Custom Handlebars if Helper](http://www.thesoftwaresimpleton.com/blog/2014/01/08/custom-if/)
* [Profile Your Ember App With Ember-renderspeed](http://balinterdi.com/2013/11/27/profile-your-ember-app-with-ember-renderspeed.html)
* [Internationalization Support in Ember.js](http://eviltrout.com/2013/11/24/i18n-in-ember.html)
* [Hiding Offscreen Content in Ember.js](http://eviltrout.com/2014/01/04/hiding-offscreen-ember.html)
* [How to Implement a Tree in Ember.js](http://dev.billysbilling.com/blog/How-to-implement-a-tree-in-Ember-js)
* [Ember.js - Creating a Custom Handlebars if Helper](http://www.thesoftwaresimpleton.com/blog/2014/01/08/custom-if/)
* [Ember.js - Creating a Custom #link-to Handlebars Helper](http://www.thesoftwaresimpleton.com/blog/2014/01/11/custome-link-to/)
* [Emberjs - Custom Link-to Refactor](http://www.thesoftwaresimpleton.com/blog/2014/01/24/custom-link-to-refactor/)
* [Emberjs - Creating a Timeago Helper](http://www.thesoftwaresimpleton.com/blog/2014/01/18/timeago-helper/)
* [Ember.js - Calling a Handlebars Helper From Another Handlebars Helper](http://www.thesoftwaresimpleton.com/blog/2013/04/07/handlebars-helper/)
* [Ember.js Custom Select with Change Event Callback](http://nadeemkhedr.wordpress.com/2014/08/18/ember-js-custom-select-with-change-event/)
* [HTMLBar Chart](http://jonathan-jackson.net/htmlbar-chart/)## Routing
> Useful resources for the Ember object model* [Ember.js Official Documentation - Routing](http://emberjs.com/guides/routing/)
* [Diagonal Routes (tool to help you define your routes)](http://www.alexspeller.com/ember-diagonal/)
* [Understanding Loading Substates in Ember](http://cball.me/understanding-loading-substates-in-ember/)
* [Understanding nesting in Ember.js](http://ugisozols.com/blog/2013/11/05/understanding-nesting-in-emberjs/)
* [Using Ember.js Outlets](https://blog.safaribooksonline.com/2013/09/10/ember-js-outlets/)
* [Adding route specific body class tags in Ember](http://reefpoints.dockyard.com/ember/2013/03/27/body-class-tags-in-ember.html)
* [Know your routes in Ember.js](http://ugisozols.com/blog/2014/02/25/know-your-routes-in-emberjs/)
* [Indicating Progress - Loading Routes in Ember.js](http://balinterdi.com/2014/06/18/indicating-progress-loading-routes-in-ember-dot-js.html)
* [Replacing items in browser history in Ember.js](http://balinterdi.com/2014/06/04/replacing-items-in-browser-history-in-ember-dot-js.html)
* [A common resource route pattern in Ember.js](http://balinterdi.com/2014/02/26/a-common-resource-route-pattern-in-ember-dot-js.html)
* [Setting the document title in Ember apps](http://balinterdi.com/2014/05/28/setting-the-document-title-in-ember-apps.html)
* [How to Use 404 Page in Your Ember.js Application](http://pixelhandler.com/posts/how-to-use-404-page-in-your-emberjs-application)
* [How to call onRouteChange and onRouteExit in Ember.js](http://nadeemkhedr.wordpress.com/2014/08/24/how-to-call-onroutechange-and-onrouteexit-in-ember-js/)## Controllers
> Useful resources for controllers* [Ember.js Official Documentation - Controllers](http://emberjs.com/guides/controllers/)
* [Sorting and Filtering with Ember.js](http://blog.crowdint.com/2014/07/08/simple-collection-s-sorting-and-filtering-with-ember-js.html)
* [Calling a controller action from a view via the needs API in Ember.js](http://www.kaspertidemann.com/calling-a-controller-action-from-a-view-via-the-needs-api-in-ember-js/)
* [Routeless Ember.js Controllers](http://ember.zone/routeless-ember-js-controllers/)
* [Ember gotcha: Controllers are singletons](http://balinterdi.com/2014/06/26/ember-gotcha-controllers-are-singletons.html)
* [The Ember Controller - Same Same, but Different - Part 1 - the ObjectController](http://www.thesoftwaresimpleton.com/blog/2013/03/24/controller/)
* [Ember.js query params on a Select with optionValuePath](http://blog.geokoumpa.com/ember-js-query-params-on-a-select-with-optionvaluepath/)
* [How to create a simple auto save feature in Ember](http://www.robert-deluca.com/posts/how-to-create-a-simple-auto-save-feature-in-ember)## Models
> Useful resources for models, see Ember Data section for specifics of working with Ember Data* [Ember.js Official Documentation - Models](http://emberjs.com/guides/models/)
* [Mimic Network Latency using FixtureAdapter](http://www.ember-tricks.com/#/tricks/How to mimic network latency with the fixture adapter during development)
* [Real World Fixtures](https://speakerdeck.com/cball/real-world-fixtures)## Ember Data
> Useful resources for Ember Data* [Ember.js Official Documentation - Models](http://emberjs.com/guides/models/)
* [A Thorough Guide to Ember Data](http://www.toptal.com/emberjs/a-thorough-guide-to-ember-data)
* [Non-RESTful API calls with Ember Data](http://cball.me/non-restful-api-calls-with-ember-data/)
* [Changes Pending! Ember Data Dirty State Tracking](http://spin.atomicobject.com/2014/05/07/ember-data-dirty-state-tracking/)
* [Ember Data: Polymorphic Associations](http://lukegalea.github.io/ember_data_polymorphic_presentation/#/)
* [Ember Data Model Maker (tool to help you define your models)](http://andycrum.github.io/ember-data-model-maker/)
* [A Simple Ember Data Route](http://reefpoints.dockyard.com/2014/03/03/a-simple-ember-data-route.html)
* [Ember Data & CORS](http://discuss.emberjs.com/t/ember-data-and-cors/3690/4)
* [Using Ancestry/Self-Join Relationships in Ember and Rails](https://github.com/brandonjmckay/ember-ancestry-example)
* [Ember Data: Mastering async relationship - Part 1](http://thau.me/2014/09/ember-data-mastering-async-relationships/)
* [Ember Data: Mastering async relationship - Part 2](http://thau.me/2014/11/ember-data-mastering-async-relationships-part-2/)### Serialization
* [Ember Data 1.0 Transition Document](https://github.com/emberjs/data/blob/master/TRANSITION.md)
* [Ember data's extractArray and extractSingle](http://sammctaggart.com/ember-datas-extractarray-and-extractsingle/)
* [Serializing Embedded Relationships with Ember Data 1.0.0 beta](http://mozmonkey.com/2013/12/serializing-embedded-relationships-ember-data-beta/)
* [Loading JSON with embedded records into Ember Data 1.0.0 beta](http://mozmonkey.com/2013/12/loading-json-with-embedded-records-into-ember-data-1-0-0-beta/)### Error Handling
* [Model Errors in EmberJS](https://marcqualie.com/2014/04/model-errors-in-emberjs)
* [Server Side Validations with Ember Data and DS.Errors](http://alexspeller.com/server-side-validations-with-ember-data-and-ds-errors)## Alternatives to Ember Data
> Useful resources for alternatives to Ember Data* [Ember without Ember Data](http://eviltrout.com/2013/03/23/ember-without-data.html)
* [Roll Your Own Ember.js Identity Map](http://balinterdi.com/2013/12/03/roll-your-own-ember-dot-js-identity-map.html)
* [Ambitious Data Flows with Ember.js and Orbit.js](https://speakerdeck.com/dgeb/ambitious-data-flows-with-ember-dot-js-and-orbit-dot-js)## Components
> Useful resources for components* [Ember.js Official Documentation - Components](http://emberjs.com/guides/components/)
* [Ember Components: A Deep Dive](http://code.tutsplus.com/tutorials/ember-components-a-deep-dive--net-35551)
* [A Graceful Image Loading Component](http://ember.zone/a-graceful-image-loading-component/)
* [Getting Ember components to respond to actions](http://www.samselikoff.com/blog/2014/05/16/getting-ember-components-to-respond-to-actions/)
* [Sorting Displayed Data Using Components](http://www.kabisa.nl/sorting-displayed-data-in-ember-js/)
* [The Confusion Around Ember Views and Components](http://ember.zone/the-confusion-around-ember-views-and-components/)
* [Making Accessible Components](https://gist.github.com/jdjkelly/0bddf2e834b6d6bc2174)
* [EmberUI Alpha Release](http://blog.venn.lc/emberui-alpha-release/)
* [Convert a view into a component](http://balinterdi.com/2014/02/05/convert-a-view-into-a-component.html)
* [Making an Ember.js component more reusable](http://balinterdi.com/2014/02/12/making-an-emberjs-component-more-reusable.html)
* [Ember & Selectize Integration](http://miguelcobain.github.io/ember-selectize/)
* [Building a juicy progress bar component in Ember](http://blog.venn.lc/building-a-juicy-progress-bar-component-in-ember/)
* [Awesome Ember.js Form Components](http://alexspeller.com/simple-forms-with-ember/)
* [Building an Autocomplete Widget Part 1](http://www.embercasts.com/episodes/building-an-autocomplete-widget-part-1)
* [Readers’ Letters: Making an Ember.js component even better](http://balinterdi.com/2014/02/18/readers-letters-making-an-ember-dot-js-component-even-better.html)
* [An Ember.js Guage Component](http://front-back.com/an-ember-js-gauge-component)
* [Alert messages in Ember Apps](http://reefpoints.dockyard.com/2014/05/01/alert-messages-in-ember-apps.html)
* [Breadcrumbs in Ember.js](http://spin.atomicobject.com/2014/07/26/ember-js-breadcrumbs/)
* [Creating a Pagination Component with Ember.js and Foundation](http://spin.atomicobject.com/2014/06/27/pagination-emberjs-foundation/)
* [Ember.js Components, Wrapping Content and Context](http://www.thesoftwaresimpleton.com/blog/2013/11/21/component-block/)
* [Disable A Button Component With Ember](http://tosbourn.com/disable-button-component-ember/)
* [Ember Components – Build a Star Rating Component](http://www.wintellect.com/blogs/nstieglitz/ember-components-%E2%80%93-build-a-star-rating-component)
* [“Subclassing” Ember Components](http://spin.atomicobject.com/2014/03/16/subclass-emberjs-components/)
* [Editing Markdown with Ember.js](http://williamhart.info/editing-markdown-with-emberjs.html)
* [Create a Custom Select Box using Ember.Component](http://pixelhandler.com/posts/create-a-custom-select-box-using-ember-component)
* [Ember Cal - A Better Calendar Component for Ember.js](https://github.com/netgusto/ember-cal)
* [Presentation on Drag & Drop in Ember](http://slides.com/bantic/emberjs-drag-and-drop)
* [Form Validation using native HTML5 rules](https://github.com/maestrooo/ember-cli-html5-validation)
* [A Simple Auto Expanding Textarea Component](http://ember.zone/a-simple-auto-expanding-textarea-component/)
* [Building a real world pagination with Ember.js - the right way](http://webcloud.info/blog/2014/11/01/building-a-real-world-pagination-with-ember-js-the-right-way/)## Modals
> Useful resources for working with modals in Ember* [Liquid Fire: Modal Dialogs](http://ef4.github.io/liquid-fire/#/modals)
* [Master Your Modals In Ember.js](http://ember.guru/2014/master-your-modals-in-ember-js)
* [Ember Modals Addon](https://github.com/sir-dunxalot/ember-modals)## Views
> Useful resources for views* [Ember.js Official Documentation - Views](http://emberjs.com/guides/views/)
* [Preserve scrolling position in Ember Apps](http://reefpoints.dockyard.com/2014/05/05/preserve-scroll-position-in-ember-apps.html)
* [Infinite Scroll View With Ember.js](http://nerdyworm.com/blog/2013/04/09/infinite-scroll-view-with-ember-dot-js/)## Testing
> Useful resources for testing* [Ember.js Official Documentation - Testing](http://emberjs.com/guides/testing/)
* [The Unofficial, Official Ember Testing Guide](https://speakerdeck.com/coderberry/the-unofficial-official-ember-testing-guide)
* [Creating an Integration test in Ember.js](http://eviltrout.com/2014/06/27/integration-testing.html)
* [Testing Ember.js Applications](http://www.mattjmorrison.com/2014/04/02/ember-testing.html)
* [Using Pretender with Ember.js](http://eviltrout.com/2014/08/26/pretender.html)
* [Testing Ember.js Apps: Managing Dependencies](http://madhatted.com/2014/8/29/testing-ember-js-apps-managing-dependencies)
* [Unit Testing in Ember.js](https://www.youtube.com/watch?v=6KE-Fj-NbnU)
* [What App.reset() does in Ember](https://emberflare.com/entries/what-app-reset-does-in-ember)
* [Testing & Tooling in EmberJS](http://spin.atomicobject.com/2014/01/02/emberjs-testing-tooling/)
* [End-to-end Javascript Testing: Integration Tests Using Ember.js Test Helpers](http://pixelhandler.com/posts/end-to-end-javascript-testing-integration-tests-using-emberjs-test-helpers)
* [Testing an Ember Application: Integration and Unit tests](http://pixelhandler.com/posts/testing-an-ember-application-integration-and-unit-tests)
* [Ember.js testing focusOut](http://piotrze.blogspot.ca/2014/08/emberjs-testing-focusout.html)## The Run Loop
> Useful resources for the run loop* [Ember.js Official Documentation - The Run Loop](http://emberjs.com/guides/understanding-ember/run-loop/)
* [Ember.run.bind](http://balinterdi.com/2014/05/09/ember-dot-run-dot-bind.html)
* [Unit Testing Ember.js, How I Learned to Stop Worrying and Love the Runloop](http://www.thesoftwaresimpleton.com/blog/2012/04/03/testing-ember-and-the-runloop/)
* [Ember runloop handbook](https://github.com/eoinkelly/ember-runloop-handbook)
* [Everything You Never Wanted to Know About the Ember Run Loop](http://alexmatchneer.com/blog/2013/01/12/everything-you-never-wanted-to-know-about-the-ember-run-loop/)
* [A 50,000 foot overview of the Ember.js Run Loop](http://ember.zone/a-50000-foot-overview-of-the-ember-js-run-loop/)
* [Avoiding Reflows using Ember's Run Loop](http://www.robharper.ca/2013/05/26/2013-05-26-avoiding-reflows-using-embers-runloop/)## Performance
> Useful resources for performance* [Performance in Ember Apps](http://madhatted.com/2014/3/28/via-emberconf-performance-in-ember-apps)
## Working With 3rd party libraries
> Useful resources for working with 3rd party libraries, including jQuery* [Wrapping a jQuery plugin in a Ember.js component](http://eviltrout.com/2014/06/03/jquery-component.html)
* [Wrapping a jQuery plugin with Ember.js Views](http://blakewilliams.me/posts/5-wrap-jquery-plugin-with-ember-view)
* [Ember JS - How to execute jQuery logic correctly after your View has been rendered](http://mavilein.github.io/javascript/2013/08/01/Ember-JS-After-Render-Event/)
* [Ember.js Date Pickers – It’s Easy!](http://spin.atomicobject.com/2013/10/29/ember-js-date-picker/)
* [Ember Date Picker with Ember Data and Pikaday](http://dylanmarkow.com/blog/2014/03/27/ember-date-picker-with-ember-data-and-pikaday/)
* [Ember.js Drag and Drop Sorting With jQuery Sortable](http://nerdyworm.com/blog/2013/04/26/ember-dot-js-drag-and-drop-sorting-with-jquery-sortable/)
* [Build a Markdown editor with Node Webkit and Ember](http://sammctaggart.com/build-a-markdown-editor-with-node-webkit-and-ember)
* [Build a Markdown editor with Node Webkit and Ember pt 2](http://sammctaggart.com/build-a-markdown-editor-with-node-webkit-and-ember-pt-2/)
* [Playing with ember-leaflet and circle marker](http://piotrze.blogspot.ca/2014/08/playing-with-ember-leaflet-and-circle.html)
* [Using pdf.js in an Ember View](https://medium.com/@gordon_cassie/using-pdf-js-in-an-ember-view-ec2626a3ac66)
* [Writing Ember.js Components with Ember CLI - with the select2 jQuery library](http://www.devcasts.io/p/writing-emberjs-components-with-ember-cli/)## Animation
> Useful resources for creating animations* [ember.js - Animating Deletes With the BufferedProxy](http://www.thesoftwaresimpleton.com/blog/2014/04/22/animate-bufferedproxy/)
* [Ember Animated Outlet: Animated route transitions in Ember.js](http://dev.billysbilling.com/blog/Ember-Animated-Outlet-Animated-route-transitions-in-Ember.js)
* [Animating Ember](http://www.robharper.ca/ember-on-mobile/animation.html)### Liquid Fire
* [Liquid Fire: Animations & Transitions for Ember Apps](http://ef4.github.io/liquid-fire/)
* [Using Liquid Fire & Flexbox](http://ef4.github.io/liquid-fire/#/scenarios/growable-flexboxes)## Authentication
> Useful resources for authentication and authorization* [Authentication for Single Page Apps](http://madhatted.com/2014/6/17/authentication-for-single-page-apps)
* [Ember.js Authentication - the right way (Javascript version)](http://webcloud.github.io/blog/2014/04/07/emberjs-authentication-the-right-way-javascript-version/)
* [Mitch Lloyd on Authentication and Authorization with Ember](https://www.youtube.com/watch?v=KzasJuhsTSs)
* [Torii (an authorization service library for your Ember.js application)](http://vestorly.github.io/torii/)
* [Using Ember Simple Auth with Ember CLI](https://www.youtube.com/watch?v=EkedSQH6yBo)
* [Ember Simple Auth](http://ember-simple-auth.simplabs.com/)
* [Ember Simple Auth Torii - extension that is compatible with Torii](https://github.com/simplabs/ember-simple-auth/tree/master/packages/ember-simple-auth-torii)
* [Ember Simple Auth Token - extension that is compatible with token-based authentication](https://github.com/jpadilla/ember-cli-simple-auth-token)
* [Ember.js and Rails Authentication Gotchas](http://blog.waymondo.com/2012-12-18-ember-dot-js-and-rails-authentication-gotchas/)
* [Client-side Authentication Part 1](http://www.embercasts.com/episodes/client-side-authentication-part-1)
* [Client-side Authentication Part 2](http://www.embercasts.com/episodes/client-side-authentication-part-2)
* [Authentication With EmberJS - Part 1](http://coderberry.me/blog/2013/07/08/authentication-with-emberjs-part-1/)
* [Authentication With EmberJS - Part 2](http://coderberry.me/blog/2013/07/08/authentication-with-emberjs-part-2/)
* [Authentication With EmberJS - Part 3](http://coderberry.me/blog/2013/07/08/authentication-with-emberjs-part-3/)## Data Visualization & D3
> Useful resources for data visualization and working with D3.js* [Visualizing Data with Ember Components & D3.js](http://embervis.affin.io/slides/)
* [Ember DC - Multi-Dimensional charting built to work natively with crossfilter rendered with d3.js](http://andrewreedy.github.io/ember-dc/)
* [ Ember and D3: Building a Simple Dashboard](http://www.samselikoff.com/blog/2013/09/26/updated-ember-d3-talk/)
* [Ember and D3: Getting new data within a route](http://www.samselikoff.com/blog/2013/07/28/ember-d3-getting-new-data-within-a-route/)## Working With Files
> Useful resources for working with files* [File Uploads in Ember JS](http://ryantablada.com/post/file-uploads-in-ember-js)
* [Direct Image Uploads with Cloudinary and Ember](https://emberflare.com/entries/direct-image-uploads-with-cloudinary-and-ember)
* [Generating Files with JavaScript and Ember.js](http://spin.atomicobject.com/2014/02/05/generate-files-javascript-ember-js/)
* [Client-side File Processing in Ember.js](http://spin.atomicobject.com/2014/01/15/client-side-file-processing-ember-js/)## Debugging
> Useful resources for debugging Ember.js apps* [Ember.js Official Documentation - Debugging](http://emberjs.com/guides/understanding-ember/debugging/)
* [Debugging with Ember Inspector – Ember’s Chrome Plugin](http://spin.atomicobject.com/2013/09/19/ember-inspector-chrome-plugin/)
* [Debugging an Ember.js Application](http://eviltrout.com/2014/08/16/debugging-ember-js.html)
* [Ember-Devtools — A Collection of Useful Functions](https://github.com/aexmachina/ember-devtools)## Build Tools
> Useful resources for generic build tools* [Getting started with Broccoli and Ember.js](http://ampersate.com/getting-started-with-broccoli-and-emberjs)
* [Gulp Ember Order](https://github.com/s1985/gulp-ember-order) - Github
* [Setting up the Grunt Watch Plugin](http://www.devcasts.io/p/setting-up-the-grunt-watch-plugin/) - Screencast
* [Ember Rocks](https://github.com/mattma/ember-rocks) - an alternative build tool to Ember CLI## Ember CLI
> Useful resources for Ember CLI* [Ember CLI Official Documentation](http://www.ember-cli.com)
* [Ember CLI Anatomy](https://emberflare.com/entries/ember-cli-anatomy)
* [Getting Started With Ember.js Using Ember CLI](http://thetechcofounder.com/getting-started-with-ember-js-using-ember-cli/)
* [Building An Ember.js Production Application With Ember Cli](http://edgycircle.com/blog/2014-building-an-emberjs-production-application-with-ember-cli)
* [Ember CLI & Phonegap](http://givan.se/p/00000001)
* [Ember CLI & Content Security Policy](https://www.justinbull.ca/anchor/posts/ember-cli-and-content-security-policy-csp)
* [Using Fixtures In Combination With Ember CLI](http://edgycircle.com/blog/2014-using-fixtures-in-combination-with-ember-cli/)
* [Working With JavaScript Plugins in Ember CLI Part 1](http://blog.abuiles.com/blog/2014/10/03/working-with-javascript-plugins-in-ember-cli/)
* [Working With JavaScript Plugins in Ember CLI Part 2](http://blog.abuiles.com/blog/2014/10/17/working-with-javascript-plugins-in-ember-cli-part-2/)### Ember CLI Addons
* [Ember CLI Dotenv](https://github.com/fivetanley/ember-cli-dotenv)
* [Ember CLI Addons Official Documentation](http://www.ember-cli.com/#developing-addons-and-blueprints)
* [Searchable Archive of Ember CLI Addons](http://www.emberaddons.com/)
* [Introducing Ember CLI Addons](http://reefpoints.dockyard.com/2014/06/24/introducing_ember_cli_addons.html)
* [Creating A Datepicker Ember Addon](http://edgycircle.com/blog/2014-creating-a-datepicker-ember-addon)
* [Ember Loading Addon](https://github.com/johnotander/ember-cli-loading)
* [A simple ember component for adding Charts](https://github.com/aomra015/ember-cli-chart)
* [Esnext Processing](https://github.com/rwjblue/ember-cli-esnext)
* [Async Button](https://github.com/dockyard/ember-cli-async-button)
* [Ember CLI Proxy Fixtures](https://github.com/dockyard/ember-cli-proxy-fixtures)
* [Pagination Addon for Ember CLI](https://github.com/mharris717/ember-cli-pagination)
* [EmberCLI Addon Hook List](https://github.com/ember-cli/ember-cli/blob/master/ADDON_HOOKS.md)## Backend Integration
> Useful resources for backend integration### Rails
* [Building an Ember App with Rails Part 1](http://reefpoints.dockyard.com/2014/05/07/building-an-ember-app-with-rails-part-1.html)
* [Building an Ember App with Rails Part 2](http://reefpoints.dockyard.com/2014/05/08/building-an-ember-app-with-rails-part-2.html)
* [Building an Ember App with Rails Part 3](http://reefpoints.dockyard.com/2014/05/09/building-an-ember-app-with-rails-part-3.html)
* [Building an Ember App with Rails Part 4](http://reefpoints.dockyard.com/2014/05/31/building-an-ember-app-with-rails-part-4.html)
* [Ember.js Tutorial With Rails 4](http://www.railsonmaui.com/blog/2013/06/11/emberjs-rails4-tutorial/)
* [Basic Alerting System with ActionController::Live and Ember.js](http://blog.geokoumpa.com/basic-alerting-system-with-actioncontrollerlive-and-ember-js/)
* [Introducing JSONAPI::Resources](http://www.cerebris.com/blog/2014/08/22/introducing-jsonapi-resources/)
* [Pretty URL's with Active Model Serializers and Ember.js](http://blog.learningspaces.io/pretty-urls/)### Firebase
* [EmberFire (Firebase + Ember Data)](https://github.com/firebase/emberFire)
* [Ember.js + Firebase = < 3](http://mjackson.roon.io/ember-js-firebase-3)
* [Build an Ember.js App With Firebase](http://balinterdi.com/2013/12/11/build-an-ember-dot-js-app-with-firebase.html)### Websockets
* [Real-time Data for an Ember.js Application using WebSockets](http://pixelhandler.com/posts/real-time-data-for-an-emberjs-application-using-websockets)
* [EmberJS WebSockets addon for Ember-CLI](https://github.com/thoov/ember-websockets)### Go
* [Building an app with Ember.js and Go - Part 1](http://nerdyworm.com/blog/2013/05/21/building-an-app-with-ember-dot-js-and-go/)
* [Building an app with Ember.js and Go - Part 2](http://nerdyworm.com/blog/2013/05/24/building-an-app-with-ember-dot-js-and-go-part-2/)
* [Building an app with Ember.js and Go - Part 3](http://nerdyworm.com/blog/2013/05/27/building-an-app-with-ember-dot-js-and-go-part-3/)### Middleman
* [Ember.js and Middleman](http://nerdyworm.com/blog/2013/05/06/ember-dot-js-and-middleman/)
### PubNub
* [http://www.pubnub.com/blog/emberjs-101-from-zero-to-ember-in-pubnub-seconds/](http://www.pubnub.com/blog/emberjs-101-from-zero-to-ember-in-pubnub-seconds/)
## Deployment
> Useful resources for deployment* [Deploying Ember-CLI apps](http://blog.firstiwaslike.com/deploying-ember-cli-apps/)
* [Lightning Fast Deployments With Rails (in the Wild)](http://blog.abuiles.com/blog/2014/07/08/lightning-fast-deployments-with-rails/)
* [Ember Hosting with Aerobatic](Ember Hosting with Aerobatic)
* [How to gzip an Ember CLI + Rails app on Heroku](http://www.robert-deluca.com/posts/how-to-gzip-an-ember-cli-and-rails-app-on-heroku)## SEO & Analytics
> Useful resources for SEO* [Ember and SEO](http://www.devcasts.io/p/spas-phantomjs-and-seo/)
* [Prerender - AngularJS SEO, BackboneJS SEO, or EmberJS SEO](http://prerender.io/)
* [Google Analytics for Single-Page Web Apps with Ember](http://spin.atomicobject.com/2014/07/01/google-analytics-web-apps/)
* [Adding Support for Search Engines to your Javascript Applications](http://eviltrout.com/2013/06/19/adding-support-for-search-engines-to-your-javascript-applications.html)## Other Libraries
> Useful Ember.js libraries* [Liquid Fire Animation Library for Ember.js](https://github.com/ef4/liquid-fire)
* [EmberUI - A component library for crafting ambitious interfaces.](http://emberui.com/)
* [Pretender - for mocking http requests](https://github.com/trek/pretender)
* [Ember + Leaflet = Fun with maps](http://gabesmed.github.io/ember-leaflet)
* [Ember.I18n - Internationalization for Ember](https://github.com/jamesarosen/ember-i18n)
* [Redactor component written in Ember.js](https://github.com/greenfieldhq/ember-cli-redactor)
* [Ember Validations](https://github.com/dockyard/ember-validations)
* [Ember Table, Ember Widgets & Ember Charts by Addepar](http://addepar.github.io)## Books
> Ember.js books* [Ember CLI 101](https://leanpub.com/ember-cli-101)
* [Developing an Ember.js Edge](http://bleedingedgepress.com/our-books/developing-an-ember-edge/)## Other Sites For Resources
> Other Ember.js resource sites* [Ember Flare](https://emberflare.com/entries)
* [Ember Zone](http://ember.zone/)
* [Ember Weekly](http://emberweekly.com/)## Misc Ember Links
> Other miscellaneous Ember.js links* [Built With Ember](http://builtwithember.io/)
* [Ember Inspector](https://github.com/emberjs/ember-inspector)
* [Building Chrome Extensions With EmberJS](https://www.youtube.com/watch?v=NtkpDL2yKGo)
* [Creating Hybrid Apps with Ember](https://speakerdeck.com/coderberry/creating-hybrid-apps-with-ember)
* [Ember.js and accessibility](http://words.steveklabnik.com/emberjs-and-accessibility)
* [Modern Mobile Web Apps (using Ember.js)](https://docs.google.com/presentation/d/1Is4f881t0pImLAQLCz4AlcLaUL8Fk4-C_Q2Hbu2DhS4/)
* [16 Opensource EmberJS Projects to Learn From](https://www.icicletech.com/blog/16-opensource-emberjs-projects-to-learn-from)Please note: Some of the links may not be as relevant as when they were originally written. The Ember.js ecosystem is under active development and things a liable to change. If you feel something should be removed just let me know.
---
To the extent possible under law,
Chris Masters
has waived all copyright and related or neighboring rights to
this work.