dart-sdk/utils/tip
2011-12-15 23:09:56 +00:00
..
fftip move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
background.html move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
copy_libs.py move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
create_fftip.py move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
dart16.png move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
dart48.png move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
dart128.png move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
froggertest.html move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
manifest.json move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
README.txt move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
tip.css move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
tip.dart Fix path in tip 2011-12-13 20:48:15 +00:00
tip.html move tip to utils so it can be picked up in the SDK 2011-12-08 22:06:59 +00:00
toss.dart Support SVG files in toss. 2011-12-15 23:09:56 +00:00

This is a rough experiment at more deeply integrating dart into a browser
in order to simplify the dev experience.  It currently provides a simple
playground for interactively messing around with dart code and an extension
to chrome to automatically compile and run .dart files.  The goal is to
provide the infrastructure to build browser extensions to chrome and other
easily extensible browsers (such as FireFox) that will make it very easy to
experiment with code and later full pages that incorporate the dart language.

Note: All commands below must be run from the dart/frog directory.  They have
not been hardened for launch from other locations.

First, you need to build tip.js by hand - bootstrapping, ya'know.

> ./frogsh --out=tip/tip.js --compile-only tip/tip.dart

Then you need to start the local server:

> ./frogsh tip/toss.dart

Finally, navigate to the appropriate page in chrome:

http://localhost:1337/frog/tip/tip.html

You should see the editor.

The part that sucks right now is that until we are properly bootstrapped, you
will need to rebuild tip.js by hand (the first step above) in order to see
changes.