| OLD | NEW |
| (Empty) | |
| 1 --- |
| 2 layout: default |
| 3 title: "Documentation" |
| 4 description: "Documentation, references, and more about the Dart language, libra
ries, and tools." |
| 5 --- |
| 6 |
| 7 # Documentation |
| 8 |
| 9 ## Getting started |
| 10 |
| 11 [Technical Overview](/docs/technical-overview/) |
| 12 : Learn about the Dart language, see Dart code, and |
| 13 learn how to participate in the Dart project. |
| 14 |
| 15 [Getting Started with Dart Editor](/docs/editor/getting-started/) |
| 16 : Follow this tutorial to install and use Dart Editor, the |
| 17 lightweight editor for Dart development. |
| 18 |
| 19 ## Language |
| 20 |
| 21 [Language Tour](/docs/language-tour/) |
| 22 : Learn how to use each major Dart language feature, from variables to |
| 23 operators to classes and libraries, with the assumption that you already |
| 24 know how to program in another language. |
| 25 |
| 26 [Language Spec](/docs/spec/) |
| 27 : Read the full Dart language specification. |
| 28 |
| 29 ## Libraries |
| 30 |
| 31 [Library Reference](http://api.dartlang.org) |
| 32 : Browse the full API reference docs for the Dart libraries. |
| 33 |
| 34 [Library Tour](/docs/library-tour/) |
| 35 : Learn how to use the major features in each library that comes with Dart. |
| 36 |
| 37 ## Usage |
| 38 |
| 39 [Articles and Tutorials](/articles/) |
| 40 : Read these articles for insight into Dart programming topics, |
| 41 such as the [Dart Style Guide](http://localhost:8080/articles/style-guide/), |
| 42 [Optional Types in Dart](http://localhost:8080/articles/optional-types/), and mo
re. |
| 43 |
| 44 [FAQ](/support/faq.html) |
| 45 : This FAQ answers many of the questions we've been asked about Dart. |
| 46 |
| 47 ## Tools |
| 48 |
| 49 [Dart Editor](/docs/editor/) |
| 50 : Get detailed instructions for using Dart Editor, a lightweight, open-source ed
itor. |
| 51 A few of the covered topics are enabling production mode, compiling to JavaScrip
t, and specifying a browser. |
| 52 |
| 53 [Chromium + Dart VM aka Dartium](/dartium/) |
| 54 : Learn how to get and use a Chromium-based browser (nicknamed Dartium) that |
| 55 includes the Dart virtual machine (VM). |
| 56 |
| 57 [Dart SDK](/docs/sdk/) |
| 58 : Learn how to download and use the Dart SDK, which includes binaries of the VM,
|
| 59 dart2js, pub, and more. |
| 60 |
| 61 [Pub package manager](/docs/pub-package-manager/) |
| 62 : This page tells you how to use the pub tool to manage Dart packages. |
| 63 |
| 64 [Dart2js compiler](/docs/dart2js/) |
| 65 : Learn how to use the dart2js tool to compile Dart code to JavaScript. |
| 66 |
| 67 [Dart VM](/docs/standalone-dart-vm/) |
| 68 : Learn how to use the dart tool (bin/dart) to run Dart command-line apps |
| 69 such as server-side scripts, programs, and servers. |
| OLD | NEW |