Search⌘ K

Styling Our Templates

Explore how to style templates in Ember.js by creating and organizing CSS files for your application. Understand Handlebars behavior with dynamic data and apply styles to components and routes, including Bootstrap integration for your e-commerce app.

Creating our e-eommerce application

Let’s create a new application named eCommerceApp by running the following command in the directory:

$ ember new eCommerceApp --no-welcome

This command creates an application skeleton. The --no-welcome flag tells Ember to create an application without a welcome page. After we create the application, let’s run the server using the following command:

Javascript (babel-node)
$ npm start
'or'
$ ember server
'or'
$ ember s

The ember s command is short for ember ...