Customizing HTML5 Boilerplate ( H5BP ) for PhoneGap / Cordova Project - html

Is there anyone who may suggest the good ideas if I want to use H5BP Mobile for My new PhoneGap Project? I really need to know-
How appropriate is the "H5BP Mobile" for "PhoneGap"?
What File should I remove from the H5BP?
What file/Scripts should I add to the boilerplate?
And Any other suggestion...
Thanks in advance :)

I know this is an old post, but if anyone is looking for an HTML5 boilerplate for Cordova or Phonegap. I have three (3) available - with notes on decisions made and implementation details.
Three (3) Phonegap Build Boilerplates for For Android and iOS
http://codesnippets.altervista.org/blog/2015/BLOG.2015-06-19.codesnippets.html
An HTML Boilerplate for Phonegap
http://codesnippets.altervista.org/blog/2015/BLOG.2015-06-10.jssnippets.html

Related

How to include HTML5 based games in tvOS custom apps?

We have implemented a tvOS app, its in App Store. Now we would like to introduce some HTML5 games in our app as a feature. We already have HTML5 games so we don't have to implement newly.
So how to include these games in my app. We got to know that we can't use WebKit in tvOS.
Is it possible to use HTML5 based code in our tvOS apps ?
If not possible is there any alternative way like 3rd parties or any tools which will convert HTML5 so that we can use ?
Is there any better way that we can implement HTML5 kind of games ?
Unfortunately there is no way to use html in this manner on tvOS, and there is no tool to just transfer html to swift since they are fundamentally different.
You can use some wrapper like Cordova https://cordova.apache.org/ to deploy your html projects as native. It could be deployed on iOS or Android.

apigee tutorial for DreamWeaver Html5

Does anyone knows where I can find a tutorial for phonegap html5 with apigee? It's because I'm wrinting an application in dreamweaver/html5 that will be deployed with phonegap for IOS/Android but I found tutorials only for ios/xcode and android/java bu i need one that does both.
Any ideas?
Thank you
This blog/video can guide you in your endeavor.
https://blog.apigee.com/detail/build_a_store_locator_app_with_html5_phonegap_an_api_based_backend_webcast_recording
Girish

Parse and Dreamweaver?

I'm thinking of creating a HTML5 app, which I also want to run well on iOS. I'm thinking of using parse.com as the backend, but apart from that I'm a little unsure where to start, can I use Adobe Dreamweaver with Parse? are there better options for creating a HTML5 app?
Thanks for any advice.
From looking at the Parse documentation, there aren't any specific tools to help you work with Parse in DreamWeaver.
If you're looking for a high-quality IDE for developing HTML5 and CSS3, see this question about open source HTML5/CSS3 IDEs.
Parse has blank XCode (for iOS), blank Android project (should work in Eclipse), and basic HTML5 project listed in their QuickStart guide. With the blank HTML5 project you can use any IDE you want to do the editing, and then open it in your browser to test it out.

Mobile application using html5 tutorial

I am new in this field and want to learn mobile app development using html5.. can anyone help me with some useful tutorial or link to learn this.
I must recommend the phonegap solution, it will help you to build cross device HTML5 apps allowing you to utilize lots of the phones features:
phonegap api
and
phonegap getting started guides

Migrating Silverlight application to HTML 5

Currently we have application in Silverlight which contains a dashboard. The dashboard was developed in Silverlight.
Now we want to migrate the Silverlight dashboard app to HTML 5.0 so that the app can run on iPhone, iPad & android phones.
How we can migrate Silverlight application to HTML 5?
Also, do we need to use any third party custom control for dashboards in HTML 5.0?
You need to convert you graphics from XAML to SVG. If you have the designs for this project, then you might want to take a look at Adobe Illustrator CS5 HTML5 Pack, which lets you "Save As SVG". You should keep everything vector based so it scales to iPhone, iPad and Android.
Then you need to transfer your UI behaviour to javascript. I suggest using KnockoutJS by Steve Sanderson. I would combine this with jQuery for ease of use.
As #Polynomial mentioned in his comment, there is no "convert to HTML" package per se, but with a little know-how you will be able to migrate.
Take a look at this project http://www.cshtml5.com/ . It might help in some simple cases.
This may not solve your problems at this moment, but there is a project under development to rebuild Silverlight without using a plugin. The project has been under development for almost a year and the website just recently launched # http://fayde.wsick.com/.
DISCLOSURE: I am affiliated with this project.