February 2016
Beginner to intermediate
308 pages
5h 46m
English
In this recipe we'll create our first project.
We'll begin with the Ember CLI tool to create our first project.
$ ember new my-project
This will create a brand new project called my-project. The project structure will have everything that we need to get started.
$ cd my-project $ ember server
The ember server command will start up a web server on port 4200. You can access this port by opening http://localhost:4200. You should see the default Welcome to Ember website.
It is a good idea to keep the Ember server running while developing your application. Ember CLI uses a tool called LiveReload ...
Read now
Unlock full access