I'm currently developing a C#/xaml app using the WindowsRT/Metro framework
Is there any way in Windows Store Apps to load and run javascript from a string? I'm looking to use Javascript in a similar way Game Engines would invoke LUA/Python scripts to perform dynamic functionality without recompiling the engine. It seems IOS can achieve this using JavascriptCore
We're currently using javascript on other platforms to perform some simple logic at various stages of a workflow (e.g. User configured behaviour in a form or wizard such as populating fields based on already entered data). Ideally at certain points in the workflow I would like to be able to invoke a javascript function which had access to a simple API already defined in the application.
Is this currently possible on Windows Store apps?
The app will not be deployed on the normal Windows Store but rather used only in enterprise type deployments