| > Imagine if their app store was a place where you could publish a progressive web app (along side their current apps). How low would the barrier of entry be then? Win10 (UWP) apps can be written entirely in HTML5/JS: https://msdn.microsoft.com/windows/uwp/get-started/create-a-... Insofar as the HTML and JS standards specify APIs, it uses them - e.g. you get IndexedDB, websockets, canvas, WebGL etc. For OS-specific things that aren't covered by the standards, you invoke WinRT APIs directly, but they're exposed as JS objects (and in a way that maps naturally to idiomatic JS - e.g. callbacks for async). All this has been there since Win8. What more, Microsoft is also investing into PhoneGap, e.g. by adding direct support for it in its tooling: https://www.visualstudio.com/vs/cordova/ so as to encourage people developing HTML-based apps for other platforms, which would, coincidentally, then be easier to port to UWP. So if you're right, then this is already actively being pursued. But so far it doesn't seem to be having a big effect. |