I see a lot of C#/XAML resources out there, but I'm wondering if there are any resources for HTML/CSS/JavaScript version on writing Windows 8 Metro apps?

By resources, I mean any of these:

  • tutorials
  • lessons
  • sessions
  • videos
  • sample apps (highly desired!)
  • forums
  • etc

Specifically for actually building Metro apps using HTML/CSS/JavaScript.

I don't see many sample apps using HTML/CSS/JavaScript out there..

To start things off, I have the obvious ones:

link|improve this question

2  
Seriously? Almost all the resources out there are for JS instead of XAML – Robert Levy Feb 1 at 12:37
feedback

1 Answer

up vote 3 down vote accepted

For samples, you can start with http://code.msdn.microsoft.com/windowsapps/.

Note that you can narrow down your search criteria by selecting the desired language (this is present on the left pane).

For high level concepts and tutorials: http://msdn.microsoft.com/en-us/library/windows/apps

Javascript language reference: http://msdn.microsoft.com/en-us/library/windows/apps/d1et7k7c.aspx

Windows programming (UI) with Javascript: http://msdn.microsoft.com/en-us/library/windows/apps/br211669.aspx

Using WinJS controls (appbars etc.) http://msdn.microsoft.com/en-us/library/windows/apps/hh465493.aspx

HTML & CSS http://msdn.microsoft.com/en-us/library/windows/apps/br229576.aspx

Note that not all samples work correctly. They have several runtime issues, the most common one being that a call to "WinJS.ProcessAll" is missing (this is required for most of the winJS controls). Second one is that references to required JS files are missing. I will recommend starting with the 'quick start' link: http://msdn.microsoft.com/en-us/library/windows/apps/hh465493.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.