Old Guides - You are viewing the guides for Ember v1.11.0. VIEW v3.28.0
Edit Page

Introduction


Creating an Application

Every Ember.js application has one instance of Ember.Application. This object is located at ./app/app.js inside your project.

What does creating an Ember.Application instance get you?

  1. It adds event listeners to the document and is responsible for delegating events to your views. (See The View Layer for a detailed description.)
  2. It automatically renders the application template.
  3. It automatically creates a router and begins routing, choosing which template and model to display based on the current URL.