Posts tagged 'Ember.js'

20 posts

EmberJS2018 – A Few Suggestions

· 7 min read

At EmberConf 2018 I finally participated in the mentorship program. Back in the early days, I remember how the community was small and it was easy to connect with the developers involved in working...

Ember.js

Ember.js: Handling Failure Using Route `error` Substates

· 10 min read

At the top level, where all error events bubble to, is the ApplicationRoute. An applicationerror substate can be added using a combination of both an application-error route and application-error t...

Ember.js Ember Addons Data JSON API

My Battle with Data Persistence in Ember Apps

· 29 min read

I worked at an agency on a complex single page application in JavaScript that was a product finder. We built the API so that is was discoverable, parameters came in and choices came out in JSON wit...

Ember.js Data JSON API

How Much Faster is HTMLBars Than Handlebars?

· 12 min read

When I shared the data with Kris Seldon, he asked whether I had normalized the data and calculated the geometric mean, since that would be a proper way to compare benchmarks. I found the document H...

Ember.js Templates

EmberConf 2015 - March 3rd (day 1)

· 20 min read

Maybe there are other people at the conference who build Web apps like I do, this is for you - Pro Tips about TDD…

Ember.js Conference

A Bet on Web Components and Ember.Component Synchronicity

· 15 min read

This article is a brief overview of both Web Components and Ember Components as well as a comparison of the two. You will see examples of blurring the lines between native Web Components and Ember ...

Ember.js Web Components Ember Components

How to Use 404 Page in Your Ember.js Application

· 2 min read

1. When the URL does not match any defined routes, the application should render a 404 page. 1. When a route's model hook has a call to this.store or Em.$.ajax and the result is a promise that is r...

Ember.js

Real-time Data for an Ember.js Application using WebSockets

· 18 min read

Following the release of Orbit.js, [Ember Orbit] was announced at the [Wicked Good Ember] conference. Again, I became excited about using smaller JSON Patch payloads (media type "application/json-p...

Ember.js Data WebSocket

We are EmberConf 2014

· 24 min read

I may have missed a few segments of the presentations or been distracted during a few talks so I apologize in advance to the speakers if I have not included notes from your talks in this article. I...

Ember.js Conference

Refreshed my Blog with Express and Ember.js

· 3 min read

I always like to have a personal project to experiment with new technologies and also to sharpen my skills as a software developer. I felt it was time to build a site using [Node.js][node.js], so ...

Ember.js Node.js

Create a Custom Select Box using Ember.Component

· 8 min read

The seven steps below cover the creation of a custom element using [Ember.Component] so I'll use a simple Ember application using a single index route, which I'll trust Ember to map the default ind...

Ember.js Ember Components

Testing an Ember Application: Integration and Unit tests

· 18 min read

1. Try Jasmine because we love BDD 2. Try Mocha because it's newer and it's used with Konacha 3. Try QUnit because it may be better with async tests then the above and the Ember.js project uses ...

Ember.js Testing