Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List of resources for Windows 8 Metro on writing apps using HTML/CSS/JavaScript?

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:

  • http://msdn.microsoft.com/en-us/library/windows/apps/br211385.aspx
  • http://www.pluralsight-training.net/microsoft/courses/TableOfContents?courseName=win8-intro
like image 830
Jan Carlo Viray Avatar asked Oct 08 '22 20:10

Jan Carlo Viray


1 Answers

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

like image 157
Sesh Avatar answered Oct 13 '22 11:10

Sesh