Usage: $0 create [options] <path> [id [name [config]]]

Description:

  Creates a new application at the provided path.

  The application name and package ID can also be customized.
  These values are set in the app manifest (config.xml) and are used when
  creating a native project (platforms/<platform>/).

  The application can be created from an existing template as well. You can
  list the existing templates with the `template list` command.

  The [config] option allows you to pass a JSON string, which will be injected
  into `<path>/.cordova/config.json`.

Options:

  --name, -n <name>         application name (default: "Hello World")
  --id, -i <package>        package name (default: "com.phonegap.hello-world")
  --template <name>         create app using an existing app template
  --copy-from, -src <path>  create project using a copy of an existing project
  --link-to <path>          symlink/shortcut to the www assets without copying

Examples:

  $ $0 create path/to/my-app
  $ $0 create path/to/my-app "com.example.app" "My App" 
  $ $0 create path/to/my-app --id "com.example.app" --name "My App" 
  $ $0 create path/to/my-app --template hello-world
  $ $0 create path/to/my-app --copy-from ../my-other-app

Also See:

  $ $0 help template
  $ $0 help template list
