{"id":15096792,"url":"https://github.com/apache/cordova-windows","last_synced_at":"2025-10-08T00:32:07.201Z","repository":{"id":462103,"uuid":"6898394","full_name":"apache/cordova-windows","owner":"apache","description":"[DEPRECATED] Apache Cordova Windows","archived":true,"fork":false,"pushed_at":"2023-01-09T07:51:13.000Z","size":39577,"stargazers_count":203,"open_issues_count":0,"forks_count":170,"subscribers_count":40,"default_branch":"master","last_synced_at":"2025-01-23T11:12:55.293Z","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}},"created_at":"2012-11-28T08:00:28.000Z","updated_at":"2024-04-18T21:48:38.000Z","dependencies_parsed_at":"2023-01-13T10:21:13.018Z","dependency_job_id":null,"html_url":"https://github.com/apache/cordova-windows","commit_stats":null,"previous_names":[],"tags_count":64,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcordova-windows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcordova-windows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcordova-windows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fcordova-windows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/cordova-windows/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235669382,"owners_count":19026815,"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-09-25T16:01:35.202Z","updated_at":"2025-10-08T00:32:01.700Z","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📌 **Deprecation Notice**\n\nThis repository is deprecated and no more work will be done on this by Apache Cordova. You can continue to use this and it should work as-is but any future issues will not be fixed by the Cordova community.\n\nFeel free to fork this repository and improve your fork. Existing forks are listed in [Network](../../network) and [Forks](../../network/members).\n\n- Learn more: https://github.com/apache/cordova/blob/master/deprecated.md#deprecated-platforms\n---\n\n\n\n# Apache Cordova for Windows\n\n[![Build status](https://ci.appveyor.com/api/projects/status/19h1fq0lyvwtei05/branch/master)](https://ci.appveyor.com/project/Humbedooh/cordova-windows/branch/master)\n[![Build Status](https://travis-ci.org/apache/cordova-windows.svg?branch=master)](https://travis-ci.org/apache/cordova-windows)\n[![codecov.io](https://codecov.io/github/apache/cordova-windows/coverage.svg?branch=master)](https://codecov.io/github/apache/cordova-windows?branch=master)\n\nThis repo contains the code for an [Apache Cordova](http://cordova.apache.org) platform that allows you to build applications that target Windows 10, and Windows 8.1, as well as Windows Phone 8.1. An Apache Cordova based applications is written in HTML, CSS and JavaScript.\n\n(Warning: Windows 8 has been deprecated, please update your applications to target Windows 8.1 or above)\n\n[Apache Cordova](http://cordova.apache.org) is a project of [The Apache Software Foundation (ASF)](http://apache.org)\n\n# Requirements\n\nSee https://cordova.apache.org/docs/en/dev/guide/platforms/windows/index.html#requirements-and-support\n\nNote that Visual Studio 2019 is not supported, as discussed in [cordova-windows issue #327](https://github.com/apache/cordova-windows/issues/327).\n\n# Getting started\n\nThe best way to use this is to install the [Cordova CLI](https://www.npmjs.com/package/cordova), create a project, add the windows platform, and run the app:\n\n\tnpm install -g cordova\n\tcordova create test\n\tcordova platform add windows\n\tcordova run windows\n\n# Getting logs from Windows Store applications\n\nYou can get your JavaScript logs as well as Windows logs related to your Windows Store application by running the following command from your app directory:\n\n\tplatforms\\windows\\cordova\\log\n\nIn most cases, this command requires administrator privileges. However, if you want to gather logs without admin privileges, you may need to manually enable logging channel via Event Viewer:\n\n\tStart -\u003e Run -\u003e eventvwr\n\tView -\u003e Show Analytic and Debug Logs\n\tApplications and Services Logs -\u003e Microsoft -\u003e Windows -\u003e AppHost -\u003e AppTracing -\u003e Enable Log\n\nPlease note that the log command is supported only for Windows Store applications and cannot get logs from Windows Phone application.\n\n# Report Issues\n\nReport them [right here at GitHub using the \"Issues\" tab](https://github.com/apache/cordova-windows/issues).\n\n# Further Reading\n\n- [Windows Platform Guide](https://cordova.apache.org/docs/en/latest/guide/platforms/windows/index.html)\n- [Apache Cordova Documentation](http://docs.cordova.io)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fcordova-windows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fcordova-windows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fcordova-windows/lists"}