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

devquora
devquora

Posted On: Feb 22, 2018

 

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.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Emberjs Interview Questions

    What is Ember.js? Write the steps to create an app in Ember.js?

    Ember.js is an open source technology written in javascript based on a model view pattern and was developed by ember cor..

    Emberjs Interview Questions

    Explain directory structure in Ember.js?

    The new command generates a project structure also called directory structure with the following files and directories:I..

    Emberjs Interview Questions

    Explain what is ember-data?

    Ember comes with a data management library called Ember data which deals with application data that defines the structur..