System Grab Bag

View all TLDR pages from common (or from all pages)

dart

The tool for managing Dart projects. More information: https://dart.dev/tools/dart-tool.
  • Initialize a new Dart project in a directory of the same name:
    dart create {{project_name}}
  • Run a Dart file:
    dart run {{path/to/file.dart}}
  • Download dependencies for the current project:
    dart pub get
  • Run unit tests for the current project:
    dart test
  • Update an outdated project's dependencies to support null-safety:
    dart pub upgrade --null-safety
  • Compile a Dart file to a native binary:
    dart compile exe {{path/to/file.dart}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.