-
Notifications
You must be signed in to change notification settings - Fork 89
Before You Begin
This tutorial assumes that you have some knowledge of the Dart programming language and development environment. It assumes you have no knowledge of Angular, but that you do know basic HTML and CSS.
To get the most out of this tutorial, you should have a Dart development environment and the tutorial's sample code.
The easiest way to get started with AngularDart is to install Dart Editor:
When you download Dart Editor, you also get the Dart SDK (which includes Dart command-line tools) and Dartium—a build of Chromium with the Dart VM. For more information about Dart tools, see www.dartlang.org/tools/.
All of the code in this tutorial is visible at https://github.com/angular/angular.dart.tutorial. We recommend that you get a local copy, either by cloning the repo or by downloading the ZIP file.
If you’re new to Dart, take some time to familiarize yourself with the basics of the Dart language and application structure. The Dart documentation lives at www.dartlang.org/. You can start with any of these:
- [Code Lab: Pirate Convention](https://www.dartlang.org/codelabs/darrrt/)
- Write your first Dart web app, using Dart Editor. Also: Generate your pirate name.
- [A Tour of the Dart Language](https://www.dartlang.org/docs/dart-up-and-running/contents/ch02.html)
- Learn all about the Dart language.
- [Dart Tutorials](https://www.dartlang.org/docs/tutorials/)
- Follow tutorials about various Dart programming topics, from web app 101 to package management to asynchronous programming with Futures and Streams.