Forrest logo
back to the ember tool

ember:tldr:7c936

ember: Create a new Ember application.
$ ember new ${my_new_app}
try on your machine

This command is used to create a new Ember.js application with a specific name.

Here's a breakdown of the command structure:

  • ember: This is the command-line interface (CLI) tool for working with Ember.js projects.
  • new: This is a command within the Ember CLI tool to create a new Ember.js application.
  • ${my_new_app}: This is a placeholder for the name you want to give your new application. You need to replace ${my_new_app} with the actual name you want to use. For example, if you want to name your application "my-app", the command will be ember new my-app.

When you run this command in the command-line or terminal, Ember CLI will create a new directory with the specified name (e.g., my-new-app) and initialize it with a basic Ember.js project structure, including configuration files, directories for organizing your code, and default files for bootstrapping 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