After playing a bit with the new Visual Studio 11 preview, I think the most interesting question is how can I make my new javascript based app run also in the browser with minimal changes? is that possible? I suppose the idea of supporting javascript is for better cross-platform apps, am I right?

I understand some of the winJs code calls the WinRT, but can we use some of the WinJS code on web-based apps too?

link|improve this question

I think it's possible, you'd have to go over the library and fake the winrt calls, replace all ms- prefixes with the browser specific one... Out of this I think we'd get something that is working, but only on modern browsers. I'm personally very interested in getting the semantic zoom control to work in regular web =) – sharp johnny Oct 4 '11 at 12:57
1  
There would be a bit more work than to just 'fake' WinRT calls. You'd have to 'replace' the ones you use. But definitely doable since you can start w/ just what you use at first. – Bamerza Apr 16 at 4:47
feedback

1 Answer

up vote 9 down vote accepted

I'm here at build and based on what the Microsoft guys have said is that WinJS does call into the Windows RT. Plus some of their stuff is based on some vendor prefix css stuff (ie IE10 only). So short answer is no, you can't.

More thoughts. To be clear, going from an existing Html/Js app to Win8 should just work. Some considerations of the Win8 App events, and the look and feel are some issues to be concerned about. But the core should work.

The original question is not to dissimilar than, "I have an IE9 HTML5/Js app that I want to run everywhere (including IE6, FF2), Is it possible?" There is a lot of functionality in their libraries, as well as there leveraging of new CSS3 features (-ms-grid, -ms-float, 3d transforms). As far as I know, all their gesture recognition stuff is in the winRT, for "fast and fluid" responsiveness, none of that you can really use outside the Metro environment.

In my opinion, the reason why win8 Metro-style apps is being supported, is not because of cross-platform apps, but to increase the developer base on who can write win8 apps.

link|improve this answer
1  
On the other hand, you are not required to use WinJS, even though it helps a lot in practice. – Pavel Minaev Sep 15 '11 at 21:26
So do you think C# will stay the mainstream? would javascript implantation end up like J# did? – CD.. Sep 17 '11 at 18:00
@CD I think C# will remain mainstream initially. For many, C# is easier and more familiar. But, Javascript probably has a better chance of being the main language for win8 metro apps in the future. What better way to learn Javascript, then by making an app, and getting rich? If you don't get rich (most won't), you still have the added benefit of how to be effective with html5/css3 and javascript. – Andre Sep 19 '11 at 16:06
feedback

Your Answer

 
or
required, but never shown

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