Skip to content

Latest commit

 

History

History
74 lines (49 loc) · 5.86 KB

5-things-you-should-know-about-developing-windows-8-apps-with-html5.md

File metadata and controls

74 lines (49 loc) · 5.86 KB
title authors intro types categories published updated status
5 things you should know about developing Windows 8 Apps with HTML5
thebeebs
Now that the [Windows 8 release](http://preview.wi...
shorts
article
controls
html5
search
share
views
windows8
web
winjs
2012/06/07 12:00:00
2012/06/07 13:00:00
archived

Now that the Windows 8 release preview is out, a lot of developers are beginning to experiment with what they can do with Windows 8.

Unsurprisingly the focus for many is on Metro-style apps that can run across everything from desktop to slate. There are a number of ways to develop these apps but HTML5 is a good place to start if your background is Web Development.  While Metro offers fantastic flexibility, it does require that we get our heads around some new concepts. So for this post I thought I’d cover some of the areas I talk about at events and point you towards some useful resources to get you started.

I’ve selected 5 things that I think you should start exploring:

Views

When you’re producing an operating system without a specific device in mind, you need to make sure it’s flexible. After all you don’t know whether the user will be viewing the app on a PC with a large 27inch screen or a tablet with a 11.6 inch screen and a high pixel density. This can be a challenge for developers as they need to consider how there application will look across multiple devices in various orientations and in specific states (like when your app is snapped alongside another application).

The basic approach to solving this is by using adaptive controls, CSS3 Media Quires and CSS Grids. The following articles will help you understand how to make sure your app looks great whatever device it’s used on:

Search Contract

There’s lots of common functionality built into Windows 8 that you can take advantage of as a developer. You take advantage of this functionality by using Contracts. If you use the Search contract then a user will be able to search your app by swiping their finger over the right hand side of the screen and bringing up the search charm (the charms are a set of buttons that are always available to the user regardless of what app they have open that provide common functionality) As you’d expect, this allows users to search within your app. However, it doesn’t end there. Because of the way contracts glue everything together, it will also allow people to search within other apps too – or across the web for that matter.

Users can search from one single place, regardless of the app they are using or where they are in the system.

Share Contract

Traditionally, when you’re looking to add sharing functionality to an app, you need to choose up front which other services you want to use. So you might decide that you really need to let users share with Facebook and Twitter and then code that in. Of course things change over time – who knows what kinds of sharing will be popular in future? (An obvious example right now is Pinterest.)

The share contract is a pretty cool way round this issue. If your app in a Share Source then it will be able to share specific content types with any app on the system that supports accepting those content Types. Apps that accept specific content are called Share Targets.

So you could share an image from your app with any app that is capable of accepting image files. As a developer you don’t need to know what app you are sharing with, you just code to a contract and Windows 8 becomes the middle man that manages the sharing.

You can share specific content types, however it is also extensible so you can define your own content types to.

Default controls

A lot of research has gone into Windows 8. Specifically, how people like to interact with an operating system on various devices. So the team has looked at desktops, laptops and tablets, and how people work with a mouse or pen or touch. In fact every which way someone might use any individual element.

All this learning has then been bundled up into the default set of controls that are included in the SDK. It means that developers don’t have to face the complexity of re-learning everything to make their apps more user-friendly. They simply get best practice elements right from the start.

WinJS

I’ve talked before about where HTML5 excels and where it can struggle. As good as it is, there are still some things HTML5 can’t do yet. But when it comes to Windows 8, the answer is the Windows JavaScript Library.

WinJS provides a bridge between HTML and Windows APIs. It means you don’t have to limit what your apps can do to just what HTML5 can do.

So that’s it. My starters for beginning to develop for Windows 8. I hope you find the resources useful and I’d love to hear from you if you are currently planning or developing a Windows 8 Metro app.