Forrest logo
back to context overview

dart

List of commands for dart:

  • dart:tldr:03896 dart: Run a Dart file.
    $ dart run ${filename-dart}
    try on your machine
    explain this command
  • dart:tldr:27a2e dart: Download dependencies for the current project.
    $ dart pub get
    try on your machine
    explain this command
  • dart:tldr:50d9d dart: Run unit tests for the current project.
    $ dart test
    try on your machine
    explain this command
  • dart:tldr:70323 dart: Initialize a new Dart project in a directory of the same name.
    $ dart create ${project_name}
    try on your machine
    explain this command
  • dart:tldr:a07e0 dart: Update an outdated project's dependencies to support null-safety.
    $ dart pub upgrade --null-safety
    try on your machine
    explain this command
  • dart:tldr:e600b dart: Compile a Dart file to a native binary.
    $ dart compile exe ${filename-dart}
    try on your machine
    explain this command
back to context overview