Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The Dart language looks like a very nice technology to build web applications for the web. For me it seems that there are no browsers available (yet?) which can run Dart scripts natively. Although there's a description on Dart's site about how to embed such scripts into HTML. I understand that for now i have to "compile" Dart scripts to Javascript. But will this change in the future or the language is designed to be translated to other script standards similary like haXe?

share|improve this question

3 Answers

up vote 14 down vote accepted

This is speculation, but I guess that Chrome will likely support dart natively in the future. It will mean that Chrome will be able to outperform other browsers that don't have the native support.

Update: There's a hint from The Official Google Code Blog that it might be coming:

The Dart VM is not currently integrated in Chrome but we plan to explore this option.

Update 2: It looks like I was right! Here's some recent news:

Additionally, and perhaps most importantly, Google is releasing Dartium, a Chromium build with native Dart support.

It’s more than likely that Dartium is part of a series of steps that Google will be taking to launch native support in Chrome — greatly improving the usefulness of Dart. Bringing native support into other browsers like Firefox and IE, on the other hand, will be quite the challenge.

Update 3: Since I posted this answer, Microsoft have released TypeScript which is a competing technology. I'd say it's unlikely that Microsoft have any intention of integrating Dart into Internet Explorer as they would probably prefer people to use TypeScript rather than Dart.

share|improve this answer
2  
I was waiting for Dart to become available in the developer channel of Chrome. I'm a bit disappointed that their browser don't have a native runtime environment for Dart yet. But hopefully this will change in the future. I'm also waiting for a decent IDE or at least a plugin for current IDEs. – NagyI Oct 10 '11 at 17:18
1  
Dart Editor and the Dart plugin for Eclipse are very decent. – Daniel Rodriguez Oct 18 '12 at 0:07

The official answer is Yes, Dart will run natively in Chrome. The branch of Chrome, affectionately called Dartium, is now available as source, and binaries will be released soon. More information on how to get and build the source: http://code.google.com/p/dart/wiki/BuildingDartium

share|improve this answer

Eventually, yes. The proposed MIME type + usage looks like this:

<script type="application/dart">
  main() {
    Element element = document.getElementById('message');
    element.innerHTML = 'Hello from Dart';
  }     
</script>

(That example looks like JavaScript, but don't be fooled!)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.