Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 1.34 KB

ch04.markdown

File metadata and controls

51 lines (34 loc) · 1.34 KB
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 %}

{{ page.title }}

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.

dart: The standalone VM

: 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 %}