0 votes
in JavaScript by

 Write command to start and stop development server in Ember.js?

1 Answer

0 votes
by

We can install Ember with a single command using npm such as: -npm install –g ember-cli@2.17. We can use ember new command to create a new application:- ember new ember-quickstart. This command will create a new directory called ember-quickstart and set up a new Ember application inside it. Outside, the application will include a development server. We can start a development server by typing the command:

  1. Cd ember-quickstart
  2. Ember serve

To stop the development server at any time simply type Ctrl-c in our terminal.

...