0 votes
in JavaScript by
Installing Ember CLI steps

1 Answer

0 votes
by
Ember CLI integrates Ember patterns into development process and focuses easily on the

developer productivity. It is used for creating Ember apps with Ember.js and Ember data.

You can install Ember using npm as in the command given below:

npm install -g ember-cli

To install the beta version, use the following command:

npm install -g [email protected]

To check the successful installation of Ember, use the following command:

ember -v

After executing the above command, it will show something like this:

ember-cli: 2.10.1

node: 0.12.7

os: win32 ia32

Related questions

0 votes
0 votes
+1 vote
asked Feb 28, 2020 in JavaScript by miceperry
0 votes
0 votes
asked Feb 25, 2020 in JavaScript by miceperry
0 votes
asked Mar 13, 2020 in JavaScript by AdilsonLima
...