Forrest logo
back to the ember tool

ember:tldr:fc30c

ember: Create a new Ember addon.
$ ember addon ${my_new_addon}
try on your machine

The command "ember addon ${my_new_addon}" is used to create a new Ember addon in an Ember.js project.

In this command, ${my_new_addon} is a placeholder for the name of the addon you want to create. You need to replace it with the actual desired name of your addon.

When you run this command, it will generate the necessary files and folder structure for an Ember addon under the name specified. The addon will be created in the "addon" directory of your Ember project.

This command is typically executed in the command line interface or terminal while in the root directory of your Ember project.

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