Usage: $0 create [options] [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//). 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 `/.cordova/config.json`. Options: --name, -n application name (default: "Hello World") --id, -i package name (default: "com.phonegap.hello-world") --template create app using an existing app template --copy-from, -src create project using a copy of an existing project --link-to 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