4 reasons to keep an eye on Dart

TL;DR

Dart is worth watching because:

  1. it can be used to create many different kinds of apps (mobile, desktop, console, front-end web, server-side web, cloud function)
  2. it has nice tools that work well on several platforms
  3. it has a strong and growing community
  4. it has a promising future with Flutter rising in popularity and Fuschia coming someday.

A couple reasons I may wait before doubling down on Dart and its ecosystem are 1) support for some use cases is still early in development (e.g. desktop apps and web apps), and 2) the language itself is still evolving to gain features you might expect from a modern programming language (e.g. pattern matching and data classes).

Intro

I’ve tinkered with a fair amount of programming languages. At work, I’m mostly using JavaScript and Java, but I’ve played with a few others including some mainstream ones like Python, C#, and Swift as well as some less popular ones like OCaml, Haskell, and Rust (though, the lattermost language is gaining traction and catching the eye of big tech companies like Amazon and Microsoft).

Once I get to know a language a little, I often find myself really digging some aspects of the language or its ecosystem of tools but perplexed by others.

For example, I enjoy writing OCaml (specifically in its Reason syntax) because it’s statically typed yet has a concise syntax, and it has features such as algebraic data types and pattern matching that make it really expressive to write in. However, its toolchain is difficult to set up (especially on Windows), and if you ever want to make an actual application, you’ll likely have to implement things that you’ve come to take for granted with other languages. Don’t take my word for it, check out what this blog or this video has to say about it.

For another example, I enjoy using C# and F# because they are both .NET languages, and therefore come with an abundance of tools to help you create just about any kind of software you want. However, the .NET ecosystem is complex and is at least intimidating if not also confusing for newcomers (Do I use .NET Framework or .NET Core or .NET Standard or .NET 5? What’s a Base Class Library vs. a Portable Class Library? What’s the CLR and how is it different from the Core CLR? Oh my…), which is why articles like this and videos like this exist.

What is Dart?

The current language that I’m playing with is Dart. Like many of the other languages I’ve looked at, there are some aspects about it that I really enjoy and others that I find perplexing. From what I’ve experienced, however, it’s a language worth watching for reasons I’ll go into later in this post. First, let’s get a brief summary of Dart’s history.

Dart was created by Google in 2011 and originally conceived to be a new (better) language for the web. Although Google claims it wasn’t supposed to compete with JavaScript, the proposed advantages of Dart were direct criticisms of the JavaScript ecosystem at the time (lack of application structure, weak tooling, no compile time safety).

As we’ve seen, however, Dart did not actually take off on the web, and the JavaScript ecosystem has since grown to have more frameworks and tools (e.g. React, Angular, Webpack, npm, etc.) and even compile time safety (i.e. TypeScript).

Dart seemed to be a fairly niche language for a while. That is, until its recent surge in popularity, primarily due to the rise of Flutter. Dart was the the fastest growing language on GitHub in 2019 (see Figure 1). It’s also climbing the charts on language popularity indexes such as PYPL and Tiobe (currently ranked as the 20th and 31th most popular language, respectively).

Figure 1 – The State of the Octoverse in 2019

For additional reading on the history of Dart, here are a couple interesting links:

Seeing Dart turning a lot of heads especially with Flutter, I decided to give it a look myself. Here are four reasons I believe it’s a language and ecosystem worth watching.

Many ways to create

You can create mobile apps for both iOS and Android from a single Dart codebase using the Flutter SDK. Likewise, you can also use Dart with Flutter to create desktop apps for Windows, Mac, and Linux (though, desktop support is still in its early stages).

You can create console apps that AOT compile to small executables with Dart’s CLI tools (i.e. dart2native). The coolest part is although the built executable is small, it does not require an installation of Dart to run.

You can create server-side web apps using either the HTTP libraries that come with the Dart SDK or the community created frameworks such as Aqueduct or Angel.

You can create cloud functions using the Dart runtime for AWS Lambda. Azure and Google Cloud Platform have yet to support cloud functions written in Dart.

You can create client-side web apps that are written in Dart and compile to web standard HTML, CSS, and JS using Dart’s CLI tools (i.e. dart2js). You can even use the Flutter SDK to target the web with the same codebase you wrote for mobile (though, support for Flutter web apps is still in its early stages).

I’ve made basic mobile apps and native executables with Dart, and I’m looking forward to trying Dart out in all these environments.

Productive, easy-to-use tools

It took me a few minutes to discover that you can create a console app in Dart with dart create -t console-simple and compile it to a small executable with dart compile exe. Compare that to the multiple. pages. of. documentation I read and numerous settings I tried with .NET 5 to create a “small” console app only to be a bit bummed that it was 2.5 times the size of the Dart executable.

Dart’s tools and IDE plugins are easy to install and use on Windows, Mac, and Linux. Also, they have an emphasis on quick, iterative feedback. Check out the video clip below in which the mobile app hot reloads with each edit I make to the source code (note that hot reloading a Dart or Flutter web app is still being worked on).

Hot reloading with Flutter

Strong community

Dart and Flutter are open source projects. There are 14,000 packages shared on pub, the package management platform for Dart and Flutter. Some of the most popular packages are those made by the community such as provider or rxdart. There are tens of thousands of posts on StackOverflow for Dart and Flutter. More and more apps created with Flutter are being published to the app stores.

The team behind the evolution of the Dart language really seems to listen to the community. A couple examples of this include the discussion in this issue about bringing pattern matching to the language (something I really hope happens!), as well as this one about soliciting feedback from the community on what features should come next to the language.

Promising Future

Dart’s current popularity goes hand-in-hand with the rise of Flutter. Google stated in a blog post from April of this year that over two million developers have used Flutter since its release in December 2018, and that over 50,000 apps created with Flutter have been published to the Play Store. As Flutter moves toward stable support for desktop apps and web apps, I can see Dart’s popularity only continuing to grow.

Dart’s future looks even more promising if you consider the role it will play for the Fuchsia operating system that is currently in development by Google. It still seems too early to predict when Fuchsia will become a thing and what devices it will actually run on (though, some speculate that it will someday replace Android). What is known is that Google has selected Dart to be the programming language for writing UI apps for Fuchsia.

Conclusion

The Dart ecosystem’s killer features are still gaining stable support and the language itself is still evolving quickly. For the reasons described in the post, however, I’ll be watching Dart with keen interest to see where it goes from here.