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 [email protected]. 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.

Related questions

0 votes
asked Mar 11, 2020 in JavaScript by GeorgeBell
0 votes
0 votes
asked Mar 13, 2020 in JavaScript by Tate
...