Forrest logo
back to the ember tool

ember:tldr:a6b08

ember: Install an ember-cli addon.
$ ember install ${name_of_addon}
try on your machine

The command ember install ${name_of_addon} is used to install an Ember addon in an Ember.js project.

In this command, ${name_of_addon} is a placeholder where you should replace it with the actual name of the addon you want to install.

When you run this command in your terminal or command prompt within the project directory, Ember CLI (the command line interface for Ember.js) will automatically download and install the specified addon from the Ember.js addon registry. It will also update the project's package.json file to include the addon as a dependency.

After running this command, the addon should be successfully added to your Ember.js project, and you can start using its features and functionality in your application.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the ember tool