snippetbashTip
dart — Manage Dart projects. More information: <https://dart.dev/tools/dart-tool>.
Viewed 0 times
commanddartcliprojectsmanageinformationmore
Problem
How to use the
dart command: Manage Dart projects. More information: <https://dart.dev/tools/dart-tool>.Solution
dart — Manage 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 getRun unit tests for the current project:
dart testUpdate an outdated project's dependencies to support null-safety:
dart pub upgrade --null-safetyCompile a Dart file to a native binary:
dart compile exe {{path/to/file.dart}}Apply automated fixes to the current project:
dart fix --applyCode Snippets
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 getRun unit tests for the current project
dart testUpdate an outdated project's dependencies to support null-safety
dart pub upgrade --null-safetyContext
tldr-pages: common/dart
Revisions (0)
No revisions yet.