...

/

Creating Our First Application

Creating Our First Application

Learn how to install Ember CLI and use it to create a new application.

Ember CLI is a command-line toolkit for developing Ember applications. Ember CLI provides commands to create, build, test, and server an Ember application.

Setting up Ember CLI

We can set up Ember CLI on our machine with npm (node package manager) (node package manager). We need to install Node.js to get npm on our system.

Installing Node.js

We can download Node.js from nodejs.org and install it on our system. We can test the installation by using the node -v command inside the terminal. If Node.js has been successfully installed, the terminal will show us the installed version.

Note: We need Node.js version 10.x or later to install Ember CLI.

Installing Git

We also need Git—a version control system—to create a new application after installing Ember CLI. We can install Git using npm with the following command:

npm install --save npm-git-install

Installing Ember CLI

We can install the Ember CLI package using the following npm command:

npm
...