| Index: src/site/docs/index.markdown
|
| diff --git a/src/site/docs/index.markdown b/src/site/docs/index.markdown
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..681c6d8d8ea11d3c9996e32bca3cc4ed2f5a4fae
|
| --- /dev/null
|
| +++ b/src/site/docs/index.markdown
|
| @@ -0,0 +1,69 @@
|
| +---
|
| +layout: default
|
| +title: "Documentation"
|
| +description: "Documentation, references, and more about the Dart language, libraries, and tools."
|
| +---
|
| +
|
| +# Documentation
|
| +
|
| +## Getting started
|
| +
|
| +[Technical Overview](/docs/technical-overview/)
|
| +: Learn about the Dart language, see Dart code, and
|
| +learn how to participate in the Dart project.
|
| +
|
| +[Getting Started with Dart Editor](/docs/editor/getting-started/)
|
| +: Follow this tutorial to install and use Dart Editor, the
|
| +lightweight editor for Dart development.
|
| +
|
| +## Language
|
| +
|
| +[Language Tour](/docs/language-tour/)
|
| +: Learn how to use each major Dart language feature, from variables to
|
| +operators to classes and libraries, with the assumption that you already
|
| +know how to program in another language.
|
| +
|
| +[Language Spec](/docs/spec/)
|
| +: Read the full Dart language specification.
|
| +
|
| +## Libraries
|
| +
|
| +[Library Reference](http://api.dartlang.org)
|
| +: Browse the full API reference docs for the Dart libraries.
|
| +
|
| +[Library Tour](/docs/library-tour/)
|
| +: Learn how to use the major features in each library that comes with Dart.
|
| +
|
| +## Usage
|
| +
|
| +[Articles and Tutorials](/articles/)
|
| +: Read these articles for insight into Dart programming topics,
|
| +such as the [Dart Style Guide](http://localhost:8080/articles/style-guide/),
|
| +[Optional Types in Dart](http://localhost:8080/articles/optional-types/), and more.
|
| +
|
| +[FAQ](/support/faq.html)
|
| +: This FAQ answers many of the questions we've been asked about Dart.
|
| +
|
| +## Tools
|
| +
|
| +[Dart Editor](/docs/editor/)
|
| +: Get detailed instructions for using Dart Editor, a lightweight, open-source editor.
|
| +A few of the covered topics are enabling production mode, compiling to JavaScript, and specifying a browser.
|
| +
|
| +[Chromium + Dart VM aka Dartium](/dartium/)
|
| +: Learn how to get and use a Chromium-based browser (nicknamed Dartium) that
|
| +includes the Dart virtual machine (VM).
|
| +
|
| +[Dart SDK](/docs/sdk/)
|
| +: Learn how to download and use the Dart SDK, which includes binaries of the VM,
|
| +dart2js, pub, and more.
|
| +
|
| +[Pub package manager](/docs/pub-package-manager/)
|
| +: This page tells you how to use the pub tool to manage Dart packages.
|
| +
|
| +[Dart2js compiler](/docs/dart2js/)
|
| +: Learn how to use the dart2js tool to compile Dart code to JavaScript.
|
| +
|
| +[Dart VM](/docs/standalone-dart-vm/)
|
| +: Learn how to use the dart tool (bin/dart) to run Dart command-line apps
|
| +such as server-side scripts, programs, and servers.
|
|
|