1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/dart.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

28 lines
550 B
Markdown

# 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 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}}`