Do This One Thing Or Your Dart Web App Will Break
This is not link bait, this is a serious call to action for our Dartisans. If you do nothing, your Dart web app will stop working in a few weeks. Luckily, the fix is easy. To learn how to keep your Dart web app working, read on! Background Almost all Dart web apps use a small, but crucial, JavaScript file to bootstrap. While strictly not required, this dart.js file contains the necessary logic to turn on the Dart VM, swap out Dart code for JavaScript code if the VM isn't available, enable Dart-JavaScript interop, and more. Most Dart web apps have this line at the bottom of their HTML file: <!-- Don't do this anymore, for illustrative purposes only --> <script src="http://dart.googlecode.com/svn/branches/bleeding_edge/dart/client/dart.js"></script> The Problem There are a few problems with the current arrangement. The Google Code SVN server is not a CDN, and is not optimized for acting as a CDN. Relying on a public HTTP ...