| 
									
										
										
										
											2016-02-05 23:27:06 -08:00
										 |  |  | include _util-fns | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-10 18:31:46 +00:00
										 |  |  | :marked | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |   Let's start from zero and build a super simple Angular 2 application in Dart. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-23 08:50:54 -07:00
										 |  |  | .callout.is-helpful | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |   header Don't want Dart? | 
					
						
							| 
									
										
										
										
											2015-11-10 18:31:46 +00:00
										 |  |  |   :marked | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     Although we're getting started in Dart, you can also write Angular 2 apps | 
					
						
							|  |  |  |     in TypeScript and JavaScript. | 
					
						
							|  |  |  |     Just select either of those languages from the combo-box in the banner. | 
					
						
							| 
									
										
										
										
											2015-04-23 08:50:54 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-02 18:42:31 -08:00
										 |  |  | p. | 
					
						
							| 
									
										
										
										
											2015-06-01 15:41:41 -07:00
										 |  |  |   These instructions assume that you already have the | 
					
						
							|  |  |  |   <a href="https://www.dartlang.org/downloads/">Dart SDK</a> | 
					
						
							| 
									
										
										
										
											2015-03-02 18:42:31 -08:00
										 |  |  |   and any tools you like to use with Dart. | 
					
						
							| 
									
										
										
										
											2015-06-01 15:41:41 -07:00
										 |  |  |   If you don't have a favorite editor already, try | 
					
						
							|  |  |  |   <a href="https://confluence.jetbrains.com/display/WI/Getting+started+with+Dart">WebStorm</a>, | 
					
						
							|  |  |  |   which comes with a Dart plugin. | 
					
						
							|  |  |  |   You can also download | 
					
						
							|  |  |  |   <a href="https://www.dartlang.org/tools/">Dart plugins for | 
					
						
							|  |  |  |   other IDEs and editors</a>. | 
					
						
							|  |  |  |   Once you have the Dart SDK and any other tools you want, return here. | 
					
						
							| 
									
										
										
										
											2015-03-02 18:42:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | //-  ########################## | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | .l-main-section | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |   h2#section-install-angular Set up a new app directory | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-10 18:31:46 +00:00
										 |  |  |   :marked | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     Create a new directory, | 
					
						
							|  |  |  |     and put a file named `pubspec.yaml` in it. | 
					
						
							| 
									
										
										
										
											2015-03-03 11:32:06 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  |   code-example(language="sh"). | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     > <span class="blk">mkdir angular2_getting_started</span> | 
					
						
							|  |  |  |     > <span class="blk">cd angular2_getting_started</span> | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  |     > <span class="blk">vim pubspec.yaml</span>  # Use your favorite editor! | 
					
						
							| 
									
										
										
										
											2015-03-03 11:32:06 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   p. | 
					
						
							| 
									
										
										
										
											2015-06-01 09:24:11 -07:00
										 |  |  |     In <code>pubspec.yaml</code>, | 
					
						
							|  |  |  |     specify the angular2 and browser packages as dependencies, | 
					
						
							|  |  |  |     as well as the angular2 transformer. | 
					
						
							| 
									
										
										
										
											2015-12-15 13:50:09 -08:00
										 |  |  |     Angular 2 is still changing, so provide an exact version: | 
					
						
							| 
									
										
										
										
											2016-04-30 07:01:16 -07:00
										 |  |  |     <b>2.0.0-beta.17</b>. | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-31 14:56:52 -07:00
										 |  |  |   +makeExample('quickstart/dart/pubspec.yaml', 'no-rewriter', 'pubspec.yaml') | 
					
						
							| 
									
										
										
										
											2015-03-03 11:32:06 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   p. | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     In the same directory, create a <code>web</code> directory, and then | 
					
						
							|  |  |  |     run <code>pub get</code> to install the angular2 and browser packages | 
					
						
							|  |  |  |     (along with the packages they depend on). | 
					
						
							| 
									
										
										
										
											2015-09-23 18:19:14 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   code-example(language="sh"). | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     > <span class="blk">mkdir web</span> | 
					
						
							| 
									
										
										
										
											2015-09-23 18:19:14 -07:00
										 |  |  |     > <span class="blk">pub get</span> | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     Resolving dependencies... | 
					
						
							| 
									
										
										
										
											2015-09-23 18:19:14 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   //- PENDING: Create template? Link to pub/pubspec docs? | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  | //-  ########################## | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | .l-main-section | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |   h2#section-transpile Create a Dart file | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   p. | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     Create a file under <code>web</code> named <code>main.dart</code>. | 
					
						
							| 
									
										
										
										
											2015-03-03 16:37:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |   code-example(language="sh"). | 
					
						
							|  |  |  |     > <span class="blk">vim web/main.dart</span>  # Use your favorite editor! | 
					
						
							| 
									
										
										
										
											2015-03-03 16:37:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |   p. | 
					
						
							|  |  |  |     Paste the following code into <code>web/main.dart</code>: | 
					
						
							| 
									
										
										
										
											2015-03-02 22:22:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-31 14:56:52 -07:00
										 |  |  |   +makeExample('quickstart/dart/web/main.dart', null, 'web/main.dart') | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-10 18:31:46 +00:00
										 |  |  |   :marked | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     You've just defined an Angular 2 **component**, | 
					
						
							|  |  |  |     one of the most important Angular 2 features. | 
					
						
							|  |  |  |     Components are the primary way to create application views | 
					
						
							|  |  |  |     and support them with application logic. | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-20 22:39:10 +11:00
										 |  |  |     This component is an empty, do-nothing class named `AppComponent`. | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     You can add properties and application logic to it later, | 
					
						
							|  |  |  |     when you're ready to build a substantive application. | 
					
						
							| 
									
										
										
										
											2015-03-03 16:37:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     Above the class is the `@Component` annotation, | 
					
						
							|  |  |  |     which tells Angular that this class *is an Angular component*. | 
					
						
							|  |  |  |     The call to the `@Component` constructor has two | 
					
						
							|  |  |  |     named parameters, `selector` and `template`. | 
					
						
							| 
									
										
										
										
											2015-03-02 18:42:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     The `selector` parameter specifies a CSS selector for | 
					
						
							|  |  |  |     a host HTML element named `my-app`. | 
					
						
							|  |  |  |     Angular creates and displays an instance of `AppComponent` | 
					
						
							|  |  |  |     wherever it encounters a `my-app` element. | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     The `template` parameter is the component's companion template | 
					
						
							|  |  |  |     that tells Angular how to render a view. | 
					
						
							|  |  |  |     In this case, the template is a single line of HTML announcing | 
					
						
							|  |  |  |     "My First Angular 2 App". | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     The <code>main()</code> function | 
					
						
							|  |  |  |     calls Angular's <code>bootstrap()</code> function, | 
					
						
							|  |  |  |     which tells Angular to start the application with `AppComponent` | 
					
						
							|  |  |  |     at the application root. | 
					
						
							|  |  |  |     Someday the application will | 
					
						
							|  |  |  |     consist of more components arising in tree-like fashion from this root. | 
					
						
							| 
									
										
										
										
											2015-03-02 22:22:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     The top lines import two libraries. | 
					
						
							| 
									
										
										
										
											2016-03-25 16:03:53 -07:00
										 |  |  |     *All* Dart files that use Angular APIs import `core.dart`. | 
					
						
							| 
									
										
										
										
											2016-03-28 13:30:03 -07:00
										 |  |  |     Only files that call `bootstrap()` import `platform/browser.dart`. | 
					
						
							| 
									
										
										
										
											2015-03-03 16:37:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  | //-  ########################## | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | .l-main-section | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |   h2#section-angular-create-account Create an HTML file | 
					
						
							| 
									
										
										
										
											2015-03-03 16:37:56 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   p. | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     Create a file named <code>web/index.html</code> that contains | 
					
						
							|  |  |  |     the following code: | 
					
						
							| 
									
										
										
										
											2015-03-03 16:37:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-31 14:56:52 -07:00
										 |  |  |   +makeExample('quickstart/dart/web/index.html', null, 'web/index.html') | 
					
						
							| 
									
										
										
										
											2015-06-01 09:24:11 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-10 18:31:46 +00:00
										 |  |  |   :marked | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     The `<my-app>` tag in the `<body>` is | 
					
						
							|  |  |  |     the custom HTML element defined in the Dart file. | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  | //-  ########################## | 
					
						
							| 
									
										
										
										
											2015-03-02 18:42:31 -08:00
										 |  |  | .l-main-section | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |   h2#section-angular-run-app Run the app | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-02 18:42:31 -08:00
										 |  |  |   p. | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  |     You have a few options for running your app. | 
					
						
							|  |  |  |     One is to launch a local HTTP server | 
					
						
							|  |  |  |     and then view the app in | 
					
						
							|  |  |  |     <a href="https://www.dartlang.org/tools/dartium/">Dartium</a>. | 
					
						
							| 
									
										
										
										
											2015-06-01 15:41:41 -07:00
										 |  |  |     You can use whatever server you like, such as WebStorm's server | 
					
						
							|  |  |  |     or Python's SimpleHTTPServer. | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-02 18:42:31 -08:00
										 |  |  |   p. | 
					
						
							| 
									
										
										
										
											2015-03-02 22:22:56 -08:00
										 |  |  |     Another option is to build and serve the app using <code>pub serve</code>, | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  |     and then run it by visiting <b>http://localhost:8080</b> in any modern browser. | 
					
						
							|  |  |  |     Pub serve generates the JavaScript on the fly, | 
					
						
							| 
									
										
										
										
											2015-09-23 18:19:14 -07:00
										 |  |  |     which can take a while when you first visit the page. | 
					
						
							| 
									
										
										
										
											2015-03-02 22:22:56 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  |   p. | 
					
						
							|  |  |  |     Once the app is running, | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     you should see <b>My First Angular 2 App</b> in your browser window. | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-10 18:31:46 +00:00
										 |  |  |   :marked | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     If you don't see that, make sure you've entered all the code correctly | 
					
						
							|  |  |  |     and run `pub get`. | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  | //-  ########################## | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  | .l-main-section | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |   h2#section-angular-run-app Generate JavaScript | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-10 18:31:46 +00:00
										 |  |  |   :marked | 
					
						
							| 
									
										
										
										
											2015-06-01 09:24:11 -07:00
										 |  |  |     Before you can deploy your app, you need to generate JavaScript files. | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     Pub build makes that easy. | 
					
						
							|  |  |  |     To improve your app's performance, convert the | 
					
						
							|  |  |  |     HTML file to directly include the generated JavaScript; | 
					
						
							|  |  |  |     one way to do that is with dart_to_js_script_rewriter. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-10 18:31:46 +00:00
										 |  |  |   :marked | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     Add the dart_to_js_script_rewriter package to your pubspec, | 
					
						
							|  |  |  |     in both the `dependencies` and `transformers` sections. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   - var stylePattern = { pnk: /(dart_to_js_script_rewriter.*$)|(- dart_to_js_script_rewriter.*$)/gm, otl: /(dependencies:)|(transformers:)/g }; | 
					
						
							| 
									
										
										
										
											2016-03-31 14:56:52 -07:00
										 |  |  |   +makeExample('quickstart/dart/pubspec.yaml', null, 'pubspec.yaml', stylePattern) | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   p. | 
					
						
							|  |  |  |     Then compile your Dart code to JavaScript, | 
					
						
							|  |  |  |     using <code>pub build</code>. | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   code-example(language="basic"). | 
					
						
							|  |  |  |     > <span class="blk">pub build</span> | 
					
						
							| 
									
										
										
										
											2015-07-30 17:11:07 -07:00
										 |  |  |     Loading source assets... | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   p. | 
					
						
							| 
									
										
										
										
											2015-06-01 09:24:11 -07:00
										 |  |  |     The generated JavaScript appears, along with supporting files, | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  |     under the <code>build</code> directory. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   p. | 
					
						
							| 
									
										
										
										
											2015-06-01 09:24:11 -07:00
										 |  |  |     When you generate JavaScript for an Angular app, | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     be sure to use the Angular transformer. | 
					
						
							| 
									
										
										
										
											2015-06-01 09:24:11 -07:00
										 |  |  |     It analyzes your code, | 
					
						
							|  |  |  |     converting reflection-using code to static code | 
					
						
							|  |  |  |     that Dart's build tools can compile to faster, smaller JavaScript. | 
					
						
							|  |  |  |     The highlighted lines in <code>pubspec.yaml</code> | 
					
						
							|  |  |  |     configure the Angular transformer: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |   - var stylePattern = { otl: /(transformers:)|(- angular2:)|(entry_points.*$)/gm }; | 
					
						
							| 
									
										
										
										
											2016-03-31 14:56:52 -07:00
										 |  |  |   +makeExample('quickstart/dart/pubspec.yaml', null, 'pubspec.yaml', stylePattern) | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-01 09:24:11 -07:00
										 |  |  |   p. | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     The <code>entry_points</code> item | 
					
						
							| 
									
										
										
										
											2015-06-01 09:24:11 -07:00
										 |  |  |     identifies the Dart file in your app | 
					
						
							|  |  |  |     that has a <code>main()</code> function. | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  |     For more information, see the | 
					
						
							|  |  |  |     <a href="https://github.com/angular/angular/wiki/Angular-2-Dart-Transformer">Angular | 
					
						
							|  |  |  |     transformer wiki page</a>. | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-30 17:11:07 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   #performance.l-sub-section | 
					
						
							|  |  |  |     h3 Performance, the transformer, and Angular 2 libraries | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     p. | 
					
						
							|  |  |  |       When you import <code>bootstrap.dart</code>, | 
					
						
							|  |  |  |       you also get <code>dart:mirrors</code>, | 
					
						
							|  |  |  |       a reflection library that | 
					
						
							|  |  |  |       causes performance problems when compiled to JavaScript. | 
					
						
							|  |  |  |       Don't worry, | 
					
						
							|  |  |  |       the Angular transformer converts your entry points | 
					
						
							| 
									
										
										
										
											2015-09-23 18:19:14 -07:00
										 |  |  |       (<code>entry_points</code> in <code>pubspec.yaml</code>) | 
					
						
							| 
									
										
										
										
											2015-07-30 17:11:07 -07:00
										 |  |  |       so that they don't use mirrors. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-01 09:24:11 -07:00
										 |  |  | //- WHAT'S NEXT... ########################## | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | .l-main-section | 
					
						
							| 
									
										
										
										
											2015-03-03 11:32:06 -08:00
										 |  |  |   h2#section-transpile Great job! Next step... | 
					
						
							| 
									
										
										
										
											2015-03-02 14:46:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-15 23:25:02 -07:00
										 |  |  |     <!--TODO: Join us on the [Tour of Heroes](./toh-pt1.html) --> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-02 18:42:31 -08:00
										 |  |  |   p. | 
					
						
							| 
									
										
										
										
											2015-05-29 17:55:02 -07:00
										 |  |  |     Follow the <a href="guide">developer guide</a> | 
					
						
							|  |  |  |     to continue playing with Angular 2 for Dart. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   p. | 
					
						
							|  |  |  |     Or read more about Angular or Dart: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   ul | 
					
						
							|  |  |  |     li | 
					
						
							|  |  |  |       <a href="resources.html">Angular resources</a> | 
					
						
							|  |  |  |     li | 
					
						
							|  |  |  |       <a href="https://www.dartlang.org">dartlang.org</a> |