{"id":13516808,"url":"https://github.com/apache/cordova-cli","last_synced_at":"2025-05-13T16:06:24.693Z","repository":{"id":5907406,"uuid":"7126418","full_name":"apache/cordova-cli","owner":"apache","description":"Apache Cordova CLI","archived":false,"fork":false,"pushed_at":"2024-12-20T20:20:29.000Z","size":40944,"stargazers_count":951,"open_issues_count":55,"forks_count":343,"subscribers_count":76,"default_branch":"master","last_synced_at":"2025-04-03T04:16:52.449Z","etag":null,"topics":["cordova","cplusplus","csharp","java","javascript","library","mobile","nodejs","objective-c"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/apache.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-12-12T08:00:28.000Z","updated_at":"2025-03-27T09:40:26.000Z","dependencies_parsed_at":"2024-01-16T14:04:13.060Z","dependency_job_id":"e86d55f7-0b8b-43e0-a1ca-514f6c5ea7c6","html_url":"https://github.com/apache/cordova-cli","commit_stats":{"total_commits":1327,"total_committers":124,"mean_commits":"10.701612903225806","dds":0.8176337603617182,"last_synced_commit":"d9a06c55edf59078012c8d3e9a41d8a7ede9c223"},"previous_names":[],"tags_count":147,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcordova-cli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcordova-cli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcordova-cli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcordova-cli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/cordova-cli/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247910808,"owners_count":21016763,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cordova","cplusplus","csharp","java","javascript","library","mobile","nodejs","objective-c"],"created_at":"2024-08-01T05:01:26.112Z","updated_at":"2025-04-08T23:12:09.722Z","avatar_url":"https://github.com/apache.png","language":"JavaScript","readme":"\u003c!--\n#\n# Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements.  See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership.  The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License.  You may obtain a copy of the License at\n#\n# http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n#  KIND, either express or implied.  See the License for the\n# specific language governing permissions and limitations\n# under the License.\n#\n--\u003e\n\n# Cordova CLI\n\n[![NPM](https://nodei.co/npm/cordova.png)](https://nodei.co/npm/cordova/)\n\n[![Node CI](https://github.com/apache/cordova-cli/workflows/Node%20CI/badge.svg?branch=master)](https://github.com/apache/cordova-cli/actions?query=branch%3Amaster)\n[![codecov.io](https://codecov.io/github/apache/cordova-cli/coverage.svg?branch=master)](https://codecov.io/github/apache/cordova-cli?branch=master)\n\n\u003e The command line tool to build, deploy and manage [Cordova](https://cordova.apache.org)-based applications.\n\n[Apache Cordova](https://cordova.apache.org) allows for building native mobile applications using HTML, CSS and JavaScript.\nThis tool helps with management of multi-platform Cordova applications as well as Cordova plugin integration.\n\n## Installation\n\nIn your command-line on Windows:\n\n```bash\n    c:\\\u003e npm install -g cordova\n```\n\nIn your terminal on Mac OS X/Linux:\n\n```bash\n    $sudo npm install -g cordova\n```\n\n## Creating a new Cordova project\n\nThis simple example demonstrates how Cordova CLI can be used to create a `myApp` project with the `camera` plugin and run it for `android` platform:\n\n```bash\n    cordova create myApp com.myCompany.myApp myApp\n    cd myApp\n    cordova plugin add cordova-plugin-camera --save\n    cordova platform add android --save\n    cordova requirements android\n    cordova build android --verbose\n    cordova run android\n```\n\n## Docs\n\n- [Overview of Cordova]\n- [Create your first Cordova app] guide\n- [Full reference docs for Cordova CLI][Reference docs] has details of commands to add platforms, add plugins, build, package, and sign your HTML, JS apps.\n- Cordova allows you to build apps for a number of platforms. Learn more about our [Supported platforms].\n- [Project directory structure] documents the details of the directory structure created by Cordova CLI.\n\n## Contributing\n\nCordova is an open source Apache project and contributors are needed to keep this project moving forward. Learn more on\n[how to contribute on our website][contribute].\n\n## Reporting Issues\n\nIf you find issues with the Cordova CLI, please follow our guidelines for [reporting issues]. Please bear in mind that most of `cordova-cli`'s functionality is implemented in [cordova-lib], so that could be the place to report your issue.\nPlatform-specific issues should be reported in the relevant repositories, such as [cordova-android] and [cordova-ios].\n\n[Overview of Cordova]: http://cordova.apache.org/docs/en/latest/guide/overview/\n[Create your first Cordova app]: http://cordova.apache.org/docs/en/latest/guide/cli/index.html\n[Reference docs]: http://cordova.apache.org/docs/en/latest/cordova-cli/index.html\n[Supported platforms]: http://cordova.apache.org/docs/en/latest/guide/support/index.html\n[Project directory structure]: http://cordova.apache.org/docs/en/latest/cordova-cli/index.html#directory-structure\n[Contribute]: http://cordova.apache.org/contribute/\n[Reporting issues]: http://cordova.apache.org/contribute/issues.html\n[cordova-lib]: https://github.com/apache/cordova-lib\n[cordova-android]: https://github.com/apache/cordova-android\n[cordova-ios]: https://github.com/apache/cordova-ios\n","funding_links":[],"categories":["Projects","JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fcordova-cli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fcordova-cli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fcordova-cli/lists"}