Skip to main content

New site for Dart news and articles

For the latest Dart news, visit our new blog at  https://medium.com/dartlang .

So Long, Symlinks!

Long ago, back in the dawn of time, when nary a Dart file was to be found outside of the SDK repository, imports in Dart only supported file paths. As the language got older and an ecosystem began to grow around it, it quickly became clear that paths weren’t enough: Dart needed a way to import libraries that didn’t care about the location of the file doing the importing. The language team talked to the VM team and they came up with a solution. In addition to file: URIs, Dart would support a new package: scheme by looking for packages in a packages/ directory next to the entrypoint, wherever that happened to be.

This worked pretty well—well enough to form the foundation for the pub package manager, written by Bob and myself. But it also had flaws. A lot of symlinks had to be generated all over every package—the test package currently contains about four hundred. Not only was this messy, many tools ended up following the symlinks and corrupting the package cache. So the team came together again and came up with the idea of a package configuration file that lists available packages as well as the concrete URIs where they can be found.

Support for package config was quickly added to all Dart implementations. In fact, pub has been generating them since Dart 1.12. The only task remaining was to gracefully turn off pub’s support for generating the packages/ directory and all the symlinks that come with it… but that turned out to be easier said than done.

The thing is, for all its flaws, the packages/ directory was pretty easy to work with from Dart code. You just had to do some path manipulation with Platform.script to figure out where the packages/ directory was, and from there you could do whatever you wanted. It wasn’t clean, but it worked most of the time, and there was no way to do the same stuff with .packages.

Once again conversation ensued. APIs were proposed, rejected, redesigned, tweaked, implemented, rolled back, iterated on, landed, stabilized1, and verified. It took seven releases to get everything just right, but we did it, and we’re ready for you to try it out. And I’m here to tell you how.

Disabling The Packages Directory


The first step on your journey to package enlightenment is to abandon your attachment to worldly directories. Relinquish your need for the comfort of familiarity by passing --no-package-dir2 to pub get (or upgrade or downgrade). Pub won’t generate a packages/ directory, nor of course will it symlink to the directory that it doesn’t generate. If you already had a packages/ directory, pub will get rid of it as well as any symlinks pointing its way.

For most packages and applications, this is all you’ll need to do! The latest versions of core Dart tools like pub and test fully support running with a package config. As long as your code isn’t manually dealing with packages, you’re good to go. And if it is, keep reading!

Core Package APIs


The core libraries have a few primitive APIs for providing information about package resolution. They form the foundation of more advanced APIs implemented in packages, but they’re also straightforward enough to use on their own. They cover many of the most common use-cases for dealing with packages. It’s important to note, though, that they only work in the Dart VM; the JavaScript compilers only deal with packages at compile-time, so they have no way of reporting anything about them at runtime.

The most broadly-applicable library package API is Isolate.resolvePackageUri(). It converts a package: URI into a file:3 URL that can be easily converted to a path. This is the easiest way to find resources in your package, or even public resources in your dependencies.

It’s important to note that this API is asynchronous, though: it returns a Future<Uri> rather than just a Uri. This is because the VM loads package information lazily, and the load process is asynchronous. If you have any package: imports in your code, the information will already be loaded, but it’s not safe to assume that—even code that uses lots of different packages may be run from a snapshot every now and then.

The other important core APIs tell you where the package resolution comes from. Isolate.packageConfig returns the URL of the package config file used for the current isolate, and null if a package root is being used. Its twin, Isolate.packageRoot, returns the URL of the current isolate’s package root, and null if a package config is being used. These getters are useful for forwarding the current resolution scheme—for example, if you want to start a Dart process that uses the same resolution as the current isolate, you can use these to figure that out.

I should probably also mention the Platform.packageConfig and Platform.packageRoot getters as well, but I do not recommend using them. They return exactly the text passed on the command-line for the --packages or --package-root flag, respectively. This means they’re unreliable: if the package resolution information was auto-detected, they’ll return null. If the current Isolate uses a different resolution scheme than the main isolate, they could return something completely irrelevant. Avoid them.

The package_resolver Package


If you want to go beyond the basics in your package code, package_resolver is the package for you. It provides classes that encapsulate strategies for package resolution—using a package config, using a root, or using nothing at all. Where code used to just pass around a packageRoot string, it can now pass a PackageResolver that says how to resolve URIs.

You can construct a PackageResolver by passing a package config map to new PackageResolver.config(), or by passing a package root to new PackageResolver.root(). If all you have is the URI for a package config, you can also use PackageResolver.loadConfig(). But most of the time, all you need is information about the current isolate’s package resolution, which you can get from the PackageResolver.current getter.

The resolver supports more or less the same APIs that the Isolate does: resolveUri() is equivalent to Isolate.resolvePackageUri(), packageConfigUri to Isolate.packageUri, and packageRoot to Isolate.packageRoot. But it builds other useful methods on top of these as well.
The packagePath() method returns the root of a package on the local filesystem. It assumes that you’re using pub, since it needs to look above packages’ lib/ directories, but this works in practice for essentially all Dart code.

The packageUriFor() method is the reverse of Isolate.resolvePackageUri(): it converts a file: URL into a package: URI that refers to the same file, if such a URI exists. This is useful for reporting nice-looking messages; it’s much easier to read a short package: URI than a long absolute path.

The processArgument getter is useful when running Dart processes or compiling Dart to JS. It returns an argument that can be passed directly to the dart, dart2js, or dartdevc executables that will cause them to use the resolver’s resolution strategy. If you passed using a custom package config map, it’ll even manufacture a data: URI for you4.

It even exposes the package config map directly through the packageConfigMap getter. Note that since the isolate API doesn’t yet provide this information directly, this may require re-loading it from disk.

But I Want It Synchronous!


All the PackageResolver APIs are asynchronous because they might be implemented using the asynchronous Isolate APIs. But asynchrony can be annoying to work with, and sometimes it’s not necessary. That’s what the SyncPackageResolver class is for. It exposes pretty much the same API as PackageResolver, but with no futures to be found.

The catch is that if you want to get a SyncPackageResolver, all the information—the package config map or the package root URI—needs to be available up-front. So SyncPackageResolver.current and SyncPackageResolver.loadConfig() both return Future<SyncPackageResolver>, since they have to wait for Isolate API futures and/or load information from disk.

You can convert back and forth between synchronous and asynchronous package resolvers easily using the asSync and asAsync APIs. This makes it possible for packages to take whichever one they work best with without causing pain for their users. For example, source_map_stack_trace takes a SyncPackageResolver so it can work synchronously, but shelf_packages_handler takes a PackageResolver since serving handling requests is already inherently async.

Why Bother With The Package Root?

The package_resolver package goes to pains to work well with both package configs and package roots, and to make it easy for users to support both. This raises a question: if pub is moving away from generating a packages/ directory, what’s the point of supporting it?

First of all, there’ll be a transition period where both modes will be fairly common. Pub still generates the packages/ directory by default for now, and the language implementations prefer it if it exists. A smooth transition relies on code’s ability to be used in both old and new settings.
But even in the future when packages/ files aren’t generated by default, support for package roots will be sticking around, and it can still be useful. It may not be the best way to run code manually, but a lot of code isn’t run manually—Pub’s transformer support, for example, loads isolates over HTTP, where it serves virtual packages/ directories.

In addition to supporting current tools, we want leave the door open for future tools to innovate as-yet-undreamed-of ways to handle Dart code. So we choose flexibility and continue to support package roots.

On Into The Future

Once there’s been a release or two with the --no-package-dir flag and users have a chance to make sure their packages work with only a package config, we’ll disable the flag by default. You’ll need to pass --packages-dir explicitly if you want it generated. A while after that, we’ll hide the flag and stop officially supporting it. We may get rid of it entirely one day, but there’s no hurry—it’s not that hard to support.

So go forth and update your packages! Use the core library APIs and the package_resolver package, or one of the helpful packages I didn’t have a chance to get to: resource provides an abstraction for loading resources, and shelf_packages_handler makes it easy for a Shelf server to support a package root. Or write your own! The underlying tools are powerful, and I’m excited to see what you can do with them.

  1. Well, mostly stabilized. There are still a few corners of the API that are still in the process of being thoroughly tested. Bear with us if you run into them, and maybe wait another release cycle before you depend too heavily on running without the packages/ directory.
  2. This flag is new in 1.19, but some readers may notice its similarity to the undocumented --no-package-symlinks that pub used to support. --no-package-symlinks was added ages ago to let the Dart analyzer team experiment with their package config support, and we decided to tweak it a bit when making it public.
  3. Since the Dart VM supports loading packages over HTTP, it’s theoretically possible for it to return an http: URL. This doesn’t happen that often in practice, but it is a possibility—for example, the test runner can load test suites over HTTP from a pub serve instance.
  4. Note that there are usually limits on how long command-line arguments can be, so this may not work if the package config is too big.