Forrest logo
back to the cordova tool

cordova:tldr:65e0f

cordova: Create a Cordova project.
$ cordova create ${path} ${package_name} ${project_name}
try on your machine

This command is used to create a new Apache Cordova project.

  • ${path}: This parameter specifies the path or directory where the new project will be created. It is usually represented by the desired location on your file system.

  • ${package_name}: This parameter represents the package name or namespace for your project. It is a unique identifier that usually follows the reverse domain name pattern (e.g., com.example.app).

  • ${project_name}: This parameter is the name of your project. It could be any meaningful name or title you choose for your application.

When you execute this command with the appropriate values for ${path}, ${package_name}, and ${project_name}, Cordova will generate a new project structure with the necessary files and directories to develop a mobile 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 cordova tool