### Verify Ember CLI Installation Source: https://guides.emberjs.com/v1.13.0/getting-started/#toc_installation/index_toc_installation This command verifies that Ember CLI has been installed successfully. It should output the installed version of Ember CLI. ```bash ember -v ``` -------------------------------- ### Install PhantomJS using npm Source: https://guides.emberjs.com/v1.13.0/getting-started/#toc_installation/index_toc_installation This command installs PhantomJS globally using npm. PhantomJS is recommended for running tests from the command line without needing an open browser. ```bash npm install -g phantomjs ``` -------------------------------- ### Check Node.js Version using npm Source: https://guides.emberjs.com/v1.13.0/getting-started/#toc_installation/index_toc_installation This command checks the installed version of Node.js using npm. It's a prerequisite for installing Ember CLI. Ensure you have Node.js 0.12 or higher. ```bash node --version ``` -------------------------------- ### Install Ember CLI using npm Source: https://guides.emberjs.com/v1.13.0/getting-started/#toc_installation/index_toc_installation This command installs the Ember CLI globally using npm. Ember CLI is the command-line build tool for Ember.js projects, managing assets, generators, and more. ```bash npm install -g ember-cli ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.