Random posts about coding

Mostly blogging about dart.

Dart: Quick 0-60 With DartEditor and Dartium on MacOSX.

| Comments

Quick 0-60 with DartEditor and Dartium on MacOSX. The DartEditor now comes with the ability to launch Dartium directly. The key to getting that to work is to have Chromium folder located in the dart-sdk. Below is a simple script to bootstrap your MacOSX from the latest builds. Note, if you move the directory around you’ll need to adjust the runDartEditor.sh script. DartEditor expects an absolute path for the -debug flag. By the time Dartium hits the dart-sdk, his route will be obsolete. Now support for choosing frogc or dartc is available in the GUI options. [sourcecode lang=”bash”] git clone git://gist.github.com/1702746.git DartEditor cd DartEditor chmod +x get_and_unpack.sh ./get_and_unpack.sh && cd dart && ./runDartEditor.sh [/sourcecode] https://gist.github.com/1702746