You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Alexander Aprelev 7aaad727fa Revert "[build] Don't combine stdout and stderr when consuming git output." 1 day ago
.dart_tool [infra] re-land work to auto-generate .dart_tool/package_config.json 12 months ago
.github [Process] Breaking change form fails to render 2 days ago
benchmarks Reland "[vm/ffi] Add class modifiers" 5 days ago
build [vm] Add an ABI for Fuchsia RISC-V. 5 days ago
docs Spelling pkg analyzer lib 2 months ago
pkg Reinstate HintCode.DEPRECATED_MEMBER_USE_FROM_SAME_PACKAGE 1 day ago
runtime [vm/reload] Ensure we only morph instantiated classes and enums. 1 day ago
samples Reland "[vm/ffi] Add class modifiers" 5 days ago
sdk Convert TLS exceptions to HTTP exceptions 1 day ago
tests [tests] Remove interface mixin, final mixin, and sealed mixin from language tests. 1 day ago
third_party Reland x3 [dart2wasm] Include wasm-opt in the shipped dart-sdk. 2 weeks ago
tools Revert "[build] Don't combine stdout and stderr when consuming git output." 1 day ago
utils [dart2js]: require dart2js to be invoked from an approved CLI 3 days ago
.clang-format VM: Re-format to use at most one newline between functions 6 years ago
.gitattributes [web] rename suite dart2js -> web. 2 years ago
.gitconfig [infra] Add documentation to .gitconfig 5 years ago
.gitignore [test_runner] Create --write-logs dir, add default dir to .gitignore 4 months ago
.gn [infra] Migrate scripts to python3 2 years ago
.mailmap Fixed various typos in a lot of files 8 months ago
.style.yapf Mass format python with yapf 4 years ago
.vpython [infra] Add .vpython spec to fix gsutil on the bots (#31065) 5 years ago
AUTHORS Simplify the license situation 6 months ago
BUILD.gn Roll Fuchsia SDK to 7b3b23b2c0da59b3aceab6c49fbe7d9ed34d7382. 1 month ago
CHANGELOG.md Reland "[ Observatory ] Disable serving Observatory by default" 2 days ago
CONTRIBUTING.md Add more details to contributing docs 1 year ago
DEPS Update dartdoc to 6.2.1. 1 day ago
LICENSE Update LICENSE 2 years ago
OWNERS [owners] update the top-level owners file 4 months ago
PATENT_GRANT Rename patent file 4 years ago
PRESUBMIT.py Add year checking in `PRESUBMIT.py` 2 months ago
README.dart-sdk Fix README.dart-sdk file to reflect current contents of the SDK 2 months ago
README.md master => main 2 years ago
SECURITY.md Add link to published advisories 1 year ago
WATCHLISTS Create a watchlist for analyzer 2 months ago
codereview.settings [infra] Default presubmits to use python3 2 years ago
sdk_args.gni Fix typos 9 months ago

README.md

Dart

A client-optimized language for fast apps on any platform

Dart is:

  • Optimized for UI: Develop with a programming language specialized around the needs of user interface creation.

  • Productive: Make changes iteratively: use hot reload to see the result instantly in your running app.

  • Fast on all platforms: Compile to ARM & x64 machine code for mobile, desktop, and backend. Or compile to JavaScript for the web.

Dart's flexible compiler technology lets you run Dart code in different ways, depending on your target platform and goals:

  • Dart Native: For programs targeting devices (mobile, desktop, server, and more), Dart Native includes both a Dart VM with JIT (just-in-time) compilation and an AOT (ahead-of-time) compiler for producing machine code.

  • Dart Web: For programs targeting the web, Dart Web includes both a development time compiler (dartdevc) and a production time compiler (dart2js).

Dart platforms illustration

License & patents

Dart is free and open source.

See LICENSE and PATENT_GRANT.

Using Dart

Visit dart.dev to learn more about the language, tools, and to find codelabs.

Browse pub.dev for more packages and libraries contributed by the community and the Dart team.

Our API reference documentation is published at api.dart.dev, based on the stable release. (We also publish docs from our beta and dev channels, as well as from the primary development branch).

Building Dart

If you want to build Dart yourself, here is a guide to getting the source, preparing your machine to build the SDK, and building.

There are more documents on our wiki.

Contributing to Dart

The easiest way to contribute to Dart is to file issues.

You can also contribute patches, as described in Contributing.