Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <h1 id="get_ready_to_build_chrome_apps_">Get Ready to Build Chrome Apps!</h1> | |
| 2 | |
| 3 <p>Chrome apps are written in HTML5, JavaScript, and CSS, just like web apps. | |
| 4 But they look and behave more like native apps, and they have super-powerful cap abilities, | |
| 5 like the ability to interact with network and hardware devices, media tools, and much more.</p> | |
| 6 | |
| 7 <h2 id="help_us_make_chrome_apps_better_">Help us make Chrome Apps better!</h2> | |
| 8 | |
| 9 <p>Chrome apps are still in developer preview-- we know they aren't perfect. But we're trying to do something new here, bridging together the native and web experience, giving developers choice and users the best experience possible .</p> | |
| 10 | |
| 11 <p>For Chrome apps to succeed, we need and want your feedback and we don't w ant you to have to go in circles to provide it. | |
| 12 Here's a <a href="https://docs.google.com/a/google.com/forms/d/1x3309vpp-KTi HqZWOCQhjVrIWxkm0wEBp2IWMG2ywbU/viewform?id=1x3309vpp-KTiHqZWOCQhjVrIWxkm0wEBp2I WMG2ywbU">very simple feedback form</a>.</p> | |
|
mkearney1
2013/02/12 22:22:11
replace "Here's a very simple feedback form" with:
Renato Mangini (chromium)
2013/02/13 22:55:33
Done.
| |
| 13 | |
| 14 <h2 id="learn_more_about_chrome_apps">Learn more about Chrome Apps</h2> | |
| 15 | |
| 16 <ul> | |
| 17 <li>Read the <a href="http://developer.chrome.com/apps/">docs</a>.</li> | |
| 18 <li>Check out the <a href="http://developer.chrome.com/apps/api_index.html">Chro me Apps APIs</a>.</li> | |
| 19 <li>Fork any and all <a href="https://github.com/GoogleChrome/chrome-app-samples ">chrome-app-samples</a> and make something of your own.</li> | |
| 20 <li>Watch the <a href="https://developers.google.com/live/chrome/">Chrome Apps G DL sessions</a>.</li> | |
| 21 <li>Follow the Chrome Apps Todo tutorial here.</li> | |
| 22 </ul> | |
| 23 | |
| 24 <h2 id="about_this_tutorial">About this Tutorial</h2> | |
| 25 | |
| 26 <p>The goal of this tutorial is to get you building Chrome apps fast. | |
| 27 We've done our best to capture some of the trickier parts to the development process | |
| 28 keeping the sample simple and straightforward.</p> | |
| 29 | |
| 30 <p>Once you've comleted the tutorial, | |
|
mkearney1
2013/02/12 22:22:11
Spelling: comleted should be completed.
Renato Mangini (chromium)
2013/02/13 22:55:33
Done.
| |
| 31 you will have a simple Todo app. The sample code in each lab builds upon the pre vious. | |
| 32 To see how the Todo app changes as you work through the lab, | |
| 33 you can upload the code in each lab and launch the app from a new tab.</p> | |
| 34 | |
| 35 <h2 id="tutorial_structure">Tutorial structure</h2> | |
| 36 | |
| 37 <ul> | |
| 38 <li>Set up development environment: <a href="app_codelab1_setup.html">lab1_setup </a></li> | |
| 39 <li>Create basic app: <a href="app_codelab2_basic.html">lab2_basic</a></li> | |
| 40 <li>Create model-view-controller: <a href="app_codelab3_mvc.html">lab3_mvc</a></ li> | |
| 41 <li>Test app **Work-in-progress**: <a href="app_codelab4_testing.html">lab4_test ing</a></li> | |
| 42 <li>Save and fetch data: <a href="app_codelab5_data.html">lab5_data</a></li> | |
| 43 <li>Manage app lifecycle: <a href="app_codelab6_lifecycle.html">lab6_lifecycle</ a></li> | |
| 44 <li>Access user's data: <a href="app_codelab7_useridentification.html">lab7_ useridentification</a></li> | |
| 45 <li>Access resources from the web: <a href="app_codelab8_webresources.html">lab8 _webresources</a></li> | |
| 46 <li>Create multiple views: <a href="app_codelab9_multipleviews.html">lab9_multip leviews</a></li> | |
| 47 <li>Publish app in Chrome Web Store: <a href="app_codelab_10_publishing.html">la b_10_publishing</a></li> | |
| 48 </ul> | |
| OLD | NEW |