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?
Asked
Active
Viewed 1,642 times
8

Vinoth Kumar
- 1,347
- 1
- 14
- 23
1 Answers
13
There is no difference, they are aliases. Any of the following will all do the same thing:
ember server
ember serve
ember s

feupeu
- 819
- 7
- 25

Patsy Issa
- 11,113
- 4
- 55
- 74
-
So you can edit and open a pull request to the [documentation](https://github.com/ember-cli/ember-cli.github.io/blob/master/_posts/2014-04-03-getting-started.md) – ykaragol Apr 12 '16 at 12:57
-
because you found it, anyway I did. – ykaragol Apr 12 '16 at 13:13
-
There is no mention of aliases for other commands, why add them for `ember server` specifically? @ykaragol – Patsy Issa Apr 12 '16 at 13:14
-
1I think they should be placed in the docs. Added "ember s, ember serve, ember d, ember t, ember g" aliases. @Kitler – ykaragol Apr 12 '16 at 13:18