Reputation: 3496
In Windows 10, it is possible to create Universal Apps using HTML5 and Javascript (as an alternative to C#/XAML).
I'm wondering which browser engine is used to execute those apps. Is it the engine of the Edge browser? Or IE 11? Or something different?
Knowing the engine would make it easier to check for compatibility of frameworks and Javascript features.
Upvotes: 1
Views: 863
Reputation: 2105
Yes, JavaScript/HTML5/CSS3 is native to the Windows Universal Platform. Here is a very first tutorial :
Microsoft Edge and the Universal Windows Platform share the same core components, mainly Chakra (The JavaScript engine) and EdgeHTML (The HTML/CSS rendering engine). You'll get more details here :
Upvotes: 3