I created in Visual Studio 2015 a simple Visual C# Blank App (Universal Windows) with a XAML GUI to input some data. In this project, I implemented a node.js Webserver with server.js and an index.html to display these data. This whole project will run on a raspberry pi with windows iot. So that a client gets the HTML page. Now my question is how to start the web server in this project. It only works with the command "node server.js" in the console. Can I start the javascript in the program directly?
Thanks!