Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any difference between ember serve and ember server

Tags:

ember-cli

In the ember-cli documentation ember server command is used to start the app. But we could do the same with ember serve command. I assume server is just wrapper of serve. Can anyone clarify more on this?

like image 772
Vinoth Kumar Avatar asked Mar 13 '15 08:03

Vinoth Kumar


1 Answers

There is no difference, they are aliases. Any of the following will all do the same thing:

  • ember server
  • ember serve
  • ember s
like image 90
Patsy Issa Avatar answered Nov 12 '22 11:11

Patsy Issa