Get started: web apps
Still here? First you’ll play with Dart in your browser, no download required. Then you’ll install Dart and build a small web app.
With DartPad you can experiment with the Dart language and APIs, no download necessary.
For example, here’s an embedded DartPad that lets you play with the code for a todo-list generator. Click Run to run the app; the console output appears beneath the code. Try editing the source code—perhaps you’d like to add “horses” to the list of pets. To get the full DartPad experience, which includes the web UI that the app produces, open the example at dartpad.dev.
Note: If you see an empty box instead of code, go to the .
More information:
2. Install Dart
Once you’re ready to move beyond DartPad and develop real apps, you need the Dart SDK.
- Windows
- Linux
- Mac
Use to install a stable release of the Dart SDK:
You can use Aptitude to install the Dart SDK on Linux.
Perform the following one-time setup:
$ sudo apt-get install apt-transport-https
$ sudo sh -c 'curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -'
Install the Dart SDK:
$ sudo apt-get update
$ sudo apt-get install dart
Important: For more information, including how to adjust your PATH
, see Get the Dart SDK.
If you like to use the command line, install and stagehand:
$ pub global activate webdev
$ pub global activate stagehand
web Although using an IDE is optional, we highly recommend using one. For a list of available IDEs, see the .
4. Create a web app
To create a web app from the command line, use these commands:
$ mkdir quickstart
$ stagehand web-simple
$ pub get
web To create the same web app from an IDE that has Dart integration, create a project using the template named Bare-bones Web App.
To run the app from the command line, use to build and serve the app:
web Or run the app from your IDE.
To view your app, use the Chrome browser to visit the app’s URL — for example, localhost:8080.
Whether you use an IDE or the command line, builds and serves your app using the Dart development compiler, dartdevc. Startup is slowest the first time dartdevc builds and serves your app. After that, assets are cached on disk and incremental builds are much faster.
Once your app has compiled, the browser should display “Your Dart app is running.”
6. Add custom code to the app
Let’s customize the app you just created.
Copy the
thingsTodo()
function from the DartPad above to theweb/main.dart
file.In the
main()
function, initialize theoutput
element usingthingsTodo()
:void main() {
Element output = querySelector('#output');
}
LIElement newLI(String itemText) => LIElement()..text = itemText;
Iterable<String> thingsTodo() sync* { ... }
The webdev tool automatically rebuilds your app. Refresh the app’s browser window. Now your simple Dart app has a todo list! It should look something like this:
Optionally, improve the formatting by editing
web/styles.css
, then reload the app to check your changes.#output {
padding: 20px;
text-align: left;
Use Chrome DevTools to set breakpoints, view values and types, and step through your app’s Dart code. For setup details and a walkthrough, see Debugging Dart Web Apps.
Feeling lost? Don’t worry! This was a whirlwind introduction to Dart and web programming that left out many details. For a gentler approach, try a .
What next?
Check out these resources:
- Tutorials and codelabs for Dart
- Dart language, libraries, and conventions
- Tools & libraries
If you get stuck, find help at