layout | title | subsite | description | prev-chapter | prev-chapter-title | next-chapter | next-chapter-title |
---|---|---|---|---|---|---|---|
book |
Tools |
Dart Up and Running |
The remnants of Chapter 4, Tools (from Dart: Up and Running, published by O'Reilly). |
ch03.html |
Library Tour |
ch05.html |
Walkthrough |
{% include book-nav.html %}
Dart provides several tools to help you write and deploy your web and command-line apps. These tools include:
pub: The Dart package and asset manager
: Download and install packages of libraries, prepare your app for deployment, and more.
Dartium: Chromium with the Dart VM
: Run Dart web apps. This is a special build of Chromium (the project behind Google Chrome).
dart2js: The Dart-to-JavaScript compiler
: Convert your web app to JavaScript, so it can run in non-Dartium browsers.
: Run your command-line apps—server-side scripts, programs, servers, and any other apps that don’t run in a browser.
dartanalyzer: The static analyzer
: Analyze your Dart source from the command line.
Except for Dartium, all of these tools are in the Dart SDK. Dartium is a separate download.
For information about these and other tools, see Dart Tools.
{% include book-nav.html %}