You need a Chromium build with an included Dart VM. Here it's called Dartium and it's included in the Dart Editor builds. Even if you don't want to use Dart Editor, in my opinion getting one of those builds is the best way to get a ready Dartium.
Then you just load the html-file that references your dart application and you're finished.
A minimum html file for a dart application looks like this:
<!DOCTYPE html>
<html>
<head>
<title>tests</title>
</head>
<body>
<script type="application/dart" src="app.dart"></script>
</body>
</html>
Don't make the mistake of removing the dart.js line. Dartium will not start your application if it's not there. This line of code will not only try to load app.dart.js in any other browser than Dartium, it will also somehow make the Dart VM in Dartium start the app.
Cheers,
Robert
Am Freitag, 10. August 2012 22:11:03 UTC+2 schrieb mezoni:
Is there any tools to launch dart web application?