fs-extra@8 update in devDependencies
1 file changed
tree: f740fce9d76e383224fdc3d8b2858aff355a749a
  1. .github/
  2. bin/
  3. cordova-js-src/
  4. spec/
  5. template/
  6. .eslintignore
  7. .eslintrc.yml
  8. .gitattributes
  9. .gitignore
  10. .ratignore
  11. .travis.yml
  12. appveyor.yml
  13. CONTRIBUTING.md
  14. cordova-windows10.md
  15. LICENSE
  16. NOTICE
  17. package.json
  18. README.md
  19. RELEASENOTES.md
  20. VERSION
README.md

Apache Cordova for Windows

Build status Build Status codecov.io

This repo contains the code for an Apache Cordova 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.

(Warning: Windows 8 has been deprecated, please update your applications to target Windows 8.1 or above)

Apache Cordova is a project of The Apache Software Foundation (ASF)

Requirements

Windows 10, Windows 8.1, Windows Phone 8.1

Host OS: Windows 8.1 or Windows 10

Install the tools: Visual Studio 2015 or newer

Windows 8.1,Windows Phone 8.1

Host OS: Windows 8.1

Install the tools: Visual Studio 2013 Express.

Getting started

The best way to use this is to install the Cordova CLI, create a project, add the windows platform, and run the app:

npm install -g cordova
cordova create test
cordova platform add windows
cordova run windows

Getting logs from Windows Store applications

You 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:

platforms\windows\cordova\log

In 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:

Start -> Run -> eventvwr
View -> Show Analytic and Debug Logs
Applications and Services Logs -> Microsoft -> Windows -> AppHost -> AppTracing -> Enable Log

Please note that the log command is supported only for Windows Store applications and cannot get logs from Windows Phone application.

Report Issues

Report them right here at GitHub using the “Issues” tab.

Further Reading