Creating a Windows 8 Metro (HTML5) Application Without Visual Studio

I know this might be a dumb question, but is there a way to create a Windows 8 Metro (HTML5) application without using Visual Studio? As I improved it, the html5 metro application consists of typical web files (html / js / css / images) and a manifest file. Is it possible to simply archive the directory with the necessary files and use it as an application? Or am I away?

Best regards Vic

+8
windows visual-studio windows-8 windows-store-apps
source share
2 answers

Information about PowerShell scripts that you can use to package and deploy the application and then launch it from the Start screen can be found at http://social.msdn.microsoft.com/Forums/en-US/toolsforwinapps/thread/ 5013262a-2a18-4ce6-99d1-03451d6c9619 . The problem is that it will not help you very far from debugging, which is one of the biggest values โ€‹โ€‹of a tool like VS. (And don't forget that Blend ... is a great tool for styling and debugging CSS).

I heard that VS was really scared of VS (including me), but the Express Edition for Win8 is easy to use, and the IntelliSense that you get for JS, WinJS and WinRT is extremely useful. And did I mention debugging?

Honestly, when we could write Metro style apps for the first time in December 2010, we only had PowerShell scripts to do all this and actually wrote the code in Notepad. It was very painful ... I had to debug the HTML and script in a browser with F12 tools, but then you could not use the WinRT API. Gradually, VS got better and better, and itโ€™s just worth spending some time training instead of the other IDEs available for the Win8 platform.

+8
source share

Yes it is possible. There is a very good tutorial here . It uses C #, not HTML5 / JavaScript, but for the most part the same. This was written for the CTP release of Windows 8, so some changes were changed using Preview Preview, but this should be a good starting point.

+5
source share

All Articles