henning glatter-götz

Why you should take a look at Ember (again)

Update: The video from this talk given at KarlsruheJS is now available here.

In January 2015 I gave a talk at the FrankfurtJS Meetup on this topic and it generated quite a bit of interest. The motivation behind it was actually quite selfish, I needed a bit of pressure to dive into Ember.js a bit more and what better way to do that than to try and explain it to a room full of people?

By now most front-end developers have certainly heard of Ember.js and many have even given it a try. I therefore tried to combine an introduction with a bit of current information on the framework as well as the Community around Ember.js.

There have been significant changes in the past 6 months that in my opinion warrant another look at the framework even if you have evaluated it thoroughly before.

Following is a brief summary of the talk and a list of all the resources that were discussed. The demo application that was written as part of the live coding session will be discussed in a separate post. If you want to take a look at the code you can do so for the backend and the Ember application itself.

What is Ember.js?

Taken straight from the official website:

A framework for creating ambitious web applications

What does that mean? Because Ember.js is highly opinionated (and proud of it) it allows for larger teams to be very productive with it. This comes from its stand on “Convention over Configuration”, which basically means “The Ember way or the highway”, but it also means that once you get over the admittedly steep learning curve you will be able to focus on building your application and won’t be worrying about the mundane small stuff like where to put your files and how to name things.

Yehuda Kats gave a really good talk at RailsConf about the concept of “Cognitive Depletion”. In a nutshell it means that the human brain only has a limited amount of cycles per day to make decisions and after that limit is reached you become fatigued and in turn less productive. He does a really good job of explaining this and even backs it up with scientific studies on this subject.

The strong conventions that Ember.js and ember-cli enforce also result in a project structure that lets new team members become familiar with a project very quickly.

And lastly Ember.js is optimized for developer happiness. Maybe this sounds cheesy, but this is what got my attention about Ember.js in the first place. In a talk or podcast that Tom Dale and Yehuda Kats were on they talked about their mission to create a framework that makes and keeps developers happy to do their job. This is a hard one to explain because it really has to do with every aspect of Ember.js and its community but once it clicks you will know what I mean.

Who is behind Ember.js?

Yehuda Kats and Tom Dale are the two guys that started it, but as of March 2015 there are 11 other core team members from a variety of companies and places around the world. And of course there are many community members that are contributers to Ember.js in a variety of ways.

The Community

The Javascript community in general seems to be made up of a bunch of friendly enthusiastic people, but the Ember.js community in particular is extremely helpful and welcoming.

IRC

On the #emberjs IRC channel I have never seen comments like “RTFM” or the likes. In fact, in the opening keynote at EmberConf 2014 Tom and Yehuda spent considerable time on explaining the code of conduct for the Ember community and what it means to make people feel welcome. From my experience it shows.

Questions & Discussions

Stackoverflow is of course a great place to ask questions, I have Alfred configured to look there for my programming questions. For more involved discussions check out the discussion forum hosted on Discourse, which coincidentally is one of the first Ember.js apps to appear in the wild, and its open source!

Conferences

There are at this point in time two Ember.js conferences. One is in the US - EmberConf - and the other is in Europe - Ember Fest.

Meetups

If you are fortunate enough to have an Ember.js meetup near you - GO! A list of the currently active meetups can be found here.

Useful Resources

Website

Probably the best place to start is the Ember.js website. It has excellent documentation and tons of current examples. You will also find information about the current releases as well as upcoming releases.

Newsletter

I find that the newsletter emberweekly.com is a great resource for staying on top of what is going on in ember land. It lists the developments of Ember.js as well as related projects and provides links to videos, blog posts and upcoming events.

Podcasts

I get a lot of information from podcasts. They are a great source of current information directly from the people close to various projects and technologies.

Some of the more interesting ones for Ember.js developers:

  • Ember Land is a brand new podcast dedicated to Ember.js
  • Javascript Jabber There are some episodes dedicated to Ember.js. 121, 112, 111
  • Frontside the Podcast This is a fairly Ember.js centric podcast since the hosts are Ember.js consultants (well, they do most of their work in Ember.js).
  • The Changelog Episode 131 is an interview with Tom Dale and Yehuda Katz
  • Descriptive Episode 2 is a really interesting discussion about refactoring to Ember.js

Videos

Tools

ember-cli

In my opinion ember-cli is probably one of the most significant improvements to come out in the last 6-12 months. What I mean by that is that it is a huge factor in reducing the barrier of entry to Ember.js. The reason for this is that it eliminates an number of complicated tasks required for getting an Ember.js production app going and lets you get right to it. Not only does it take care of the entire build process, but it also provides an application skeleton, a dev server, a watcher to rebuild your app, auto-reload in the browser, ES6 modules and a proxy to allow you to make calls to your backend.

If you are starting a new app, use ember-cli, period.

Ember Inspector

There is a handy tool called the Ember Inspector for both Chrome and Firefox that provides insights into your Ember.js application, that not only helps with debugging but provides a visual representation of many of the applications components.

Noteworthy features

Ember Data

Ember data will allow you to talk to your backend API with very little effort IF it follows the conventions that Ember Data expects. So, if you are on a green field project where you are building your own API or if you have control of the API you are in luck. But even if you have to use an existing API it might be possible to write custom serializers and still take advantage of Ember Data. In any case it is worth a look! It is very close to 1.0.0.

Components

Ember components are trying to adhere to the official Web Components Specification as closely as possible with the intention to allow for a painless migration of the Ember Components to the W3C standard components that can then be used in other frameworks as well.

Fastboot

There is currently an effort under way to implement a feature called Fastboot, which aims to provide server side rendering of the initial page. This effort will provide the ability load HTML and CSS immediately with the Javascript downloading in the background to provide fast initial page loads.

Maintainability

The Ember.js project has adopted a six week release cycle very similar to the process that Google Chrome uses. This provides a clear and predictable path forward with small incremental changes that make it manageable to keep your applications up to date with the most current framework release. Because the changes are small-isch it is not as time consuming to move from one release to the next and does not require full rewrites.

Live Coding Demo

The demo application will be discussed in one or more future posts. It consists of a node.js backend and the actual Ember.js frontend application.

Comments