Dart is Google's JavaScript. JavaScript was developed exclusively by Netscape and forced upon the web because of their dominance. Everyone agrees in hindsight that it was bad to do it that way. And now today Google is attempting the same thing.
> Dart is Google's JavaScript. JavaScript was developed exclusively by Netscape and forced upon the web because of their dominance. Everyone agrees in hindsight that it was bad to do it that way.
This is true only for very limited values of "everyone".
Dart is an unilateral project aiming to: "ultimate goal is to replace JavaScript", "rescue browsers from JavaScript" or "Google preps Dart to challenge JavaScript". Being open source here, is not good enough.
Dart was conceived as better than Javascript, but it ended up drawing the short straw in the browser. It ended up with shit on its face, so to say. So people identify Dart with that expression.
But nothing could be further from the truth. It is a modern productivity language, like Kotlin. Anyone will be productive in a matter of a few days.
With such a low barrier, why then carry on the legacy of Javascript with its weird edge cases? So I think Google made the right call.
At this point, only those living under a rock for the past couple of months are unaware that Google has taken on JavaScript with its latest project, the Dart programming language.
I would say that Google is trying to replace JavaScript with dart in any way they possibly can. The reason is simple, JavaScript is an open standard, dart is owned by google.
Their reasons that "dart is better" is the typical google koolaid before they attempt a market takeover. As we've seen over and over with Android, chrome, and AMP especially. Google loves to make glass house open source projects you can't touch. You're free to look at how great it is, feel it's well refined curves and admire the finish, but God help you if you don't like how the project is going and want to fork it for yourself.
Don't bother trying to commit a new feature to any of Google's software that they don't agree with. It will languish forever. Don't bother forking either, because they'll build a small proprietary bit into it that grows like a tumor until it's impossible to run the "open source" code without it.
Fuck dart, I don't care how great it is. Microsoft is being the good one in this case by extending js with typescript, google is trying to upend it into something that they control
Dart is a language developed at Google whose goal is "ultimately to replace JavaScript as the lingua franca of web development on the open web platform".
But after three years of being released, and despite being powerful, there aren't strong enough signs of adoption. It received a share of criticism from the industry[1], including the following comment from Mozilla's previous CEO Brendan Eich, who developed the Javascript language:
"I guarantee you that Apple and Microsoft (and Opera and Mozilla, but the first two are enough) will never embed the Dart VM."
Lukewarm adoption is always understandable of new things but this seems political. You'd hope big cos would give a fair shot to a better web and yet you get the semblance of a second Cold War.
If the big guys control the web and not even them can fix it, what would it take then to replace Javascript?
Google's own developers use Dart for Google products, no? I think that pressure is grassroots even if it is internal. And even if Dart remains permanently a compile-to-js language, as tragic as that would be, it's still an incremental improvement over GWT.
The interesting thing is that Google has gone about the introduction of Dart in a scrupulously open way. They publicized the language early on it's design and implementation, they open sourced their implementation immediately on announcement and continued development in the open with input and contributions from all comers. The goal of the project is make it easier to develop better web apps. Now they've begun a standardization process.
In other words, Mozilla couldn't ask for a more open, standards-friendly, for-the-betterment-of-the-internet process. Regardless of Google's overall impact on the world, the Dart project is very much in line with Mozilla's mission. On the other hand, Dart competes directly with Javascript. Javascript is Mozilla's baby. The more that Dart replaces Javascript, the more Mozilla's power and influence declines.
So I expect Mozilla will oppose Dart, but they'll have to twist themselves into rhetorical contortions in the process. NIH is alive and well.
Google is a large company that is pushing various tech from a lot of different angles. You have the V8 team that has done a lot of great work for Javascript speeds. Members of V8 also were part of the EMCAScript committee to help move the language forward. With Google's focus on Dart, some of those V8 members have moved on to Dart.
Google has also been doing a lot of work with the Shadow DOM, Polymer, and lots of other fun tech.
Dart is an experiment to see if they can create a better scripting language for the web. Who knows if it'll work out, but it's nice to see a company trying something a little out there.
I'm sure creating large web apps like GMail or Docs in Dart would be much more pleasurable than doing it in Javascript. For smaller scripts just to do simple form stuff, it probably won't be any better (but hopefully not worse than Javascript today).
Quite right too. Too much of what I've read on here and in the dart forums is "I thought it would be more like..." and "google have just created something to aid their development toolchain."
I view dart as javascript grown up. It's not that much different from java et al, but it's different enough.
Only time will tell if it will replace javascript, but I'll be doing my bit to help.
> Yet when Google spent only a few months developing the first Dart ... the same criticism was leveled at Google from Mozilla.
Yeah right. Dart was originally dash. Before that it was planned modifications to JS, but nobody wanted to turn JS into Java so you threatened JavaScript "would be replaced".
Dart/dash/google.js is just open-washing. Nobody outside of Google has any say in it, and that's why they don't take to it.
The point of view within Google that spawned Dart is that JavaScript as a language has major and unfixable flaws that severely raise the cost of developing large apps. It's nice that node.js uses V8, but being based on a Google project does nothing to address the language issues.
Note that that point of view is not universally shared at Google, and many people are fine with JavaScript, and probably would use node.js.
First, Dart has a specification that's independent of Google's implementation(s). There are several implementations, which track the spec to varying degrees. See http://www.dartlang.org/docs/spec/index.html
Second, Dart is far from finished. It was unveiled early, precisely so interested parties could try it out and provide feedback while the spec was still evolving.
Third, development is happening in full view, with a public source code repository, public mailing lists, public bug tracking and public code review. AFAIK all the committers are still at Google, but it's a far more open process than the one that created Javascript, and not even comparable to VBScript.
Finally, Javascript is defined as "what SpiderMonkey does." Ok, it's fairly well documented, and the source is available for inspection. But Javascript is a proprietary language owned by Mozilla. ECMAScript is the open standard, and there are significant differences between that and the Javascript implementation that's included in Firefox. Why isn't anyone jumping up and down about how Mozilla is breaking the web by shipping a non-standard proprietary language controlled by one company?
I'm not a Google apologist; they've definitely done some evil things lately. But Dart isn't one of them. AFAICT, they've tried to strike a careful balance between including the web community in the design and implementation of Dart, while still holding to their vision of what web programming could be, and advancing towards it. I think they've done a pretty good job and I don't see what they could have done better. Herding cats is hard.
Dart is a solution for building and maintaining complex web apps. Googles JS web apps has 100's of engineers working on it spanning millions LOC. Google doesn't think it's possible to develop at this scale with vanilla JS which is why they've invested a ton of effort in developing the Closure Compiler/Library and GWT (i.e. what their big JS Web Apps use). The problems with the previous strategies is that they add boilerplate, artefacts and complexity on top of JS that slows down their build times to the point where some devs have to wait 24mins to see a live/edit reload cycle. Dart was built from the ground-up to manage complexity and to provide a consistent development experience with the goal of providing the fastest edit/reload dev cycles possible. As it's also built with the input of the VM engineers who helped create StrongTalk, Hotspot JVM, V8 VMs they are able to add features that enable a high-performance VM implementation and enable features like 'Snapshots' to provide instant start up times.
Google will never drop support for their 2 crown jewels, Chrome or Android. When Dart gets into Chrome and some of their big internet properties start to depend on it, you can pretty much guarantee that they'll never drop support for it. One of the mandates Google has is to improve the web, make it faster and make it possible for everyone to build richer more interactive web experiences so more people use and spend more time on the Internet. More time on the Internet means more time on Google, so developing and investing in technologies like Dart indirectly benefits them. It's also why any investments on improving the Internet remain supported, free and Open Source e.g WebP/M, SPDY, Chromium/Blink, V8, Closure Library, GWT, mod_pagespeed, Polymer and now Dart.
People like to confuse Google's dropping of support for their products where everything they create is fair game and can be dropped at anytime, what's not looked at, is how the product to relates to their entire ecosystem, whether it adds value and is in a growing technology/market.
It doesn't matter. Javascript is the default and what Google does with Dart does not matter unless everyone else is on board. This is a dumb, clickbait title.
>early Google efforts on the web were VERY "let's make JavaScript into Java"
That was never the case. Ever. Google was the first company to really take JavaScript seriously and launched the client-side JavaScript revolution with Maps and Gmail.
This criticism was leveled at Dart because as I argued, when Dart was launched some people (purposely) found certain parts of the syntax superficially resembled Java. It was also a time when front-end web devs haven't rediscovered the benefits of compile-time type checking (there was a time, believe it or not, when static typing was disparaged by frontend web-devs)
The irony is that Dart is a better language than JavaScript and the world would have benefitted had Dart become a browser standard (though Apple, Microsoft and Mozilla were never going to just accept a language designed by Google - so that was a pipe dream).
I am pretty excited about this. I have been using Dart since it was announced and the only downside I have experienced so far was that I had to rewrite half my code every two weeks as the language changed, although this was entirely expected.
Now that the language is a stable target I am really looking forward to seeing what sorts of libraries can come forward and also how performance can improve using the VM on the server side.
Warning: The rest of this comment is somewhat controversial and speculative. Feel free to skip it if that is not what you want.
In the bigger scheme of things I have somewhat conflicted feelings about Dart. Google has been trying very hard over the last few years to kill whatever positive feelings I had towards it for their open-source, open-web stance. A million little things like dragging their feet on chrome/webkit prefixes, google+ infiltrating everything, etc, etc have made me more appreciative than ever for Firefox and Mozilla. But in the 2 years since Dart was announced it has gone from a basic spec and vm to a fully functional and pretty great language and vm, while Javascript has languished in committee as more slop is packed in while the basics (numerical types, non-terrible type coercion) are ignored. The current target is a late 2014 release date. How much further will Dart and its VM be by then!?
I love Dart for what it lets me do right now, and for its commitment to compiling to javascript so everyone can use it. But it's hard to trust that google won't use it as some sort of competitive weapon in the future. And so I am stuck, wanting to support the open web, while being unable to stand the leap back in time and productivity that is developing in Javascript.
I guess the only thing to do is focus on getting things done in the here and now and let the future take care of itself. And right here and now Dart is a pretty compelling package.
Dart is no more an attempt to replace the web with a walled garden than GWT is (which is what I work on). It is a tool, like Typescript, like CoffeeScript, like ClojureScript, like Emscripten. There's no "plan" to create a lock-in walled garden based around programming language.
Google is interested in making the experience of developing web apps better, and making web apps more performant. They have many different strategies for this: Chrome DevTools, AngularJs, Web Components and other spec improvements, Dart, Closure Compiler, GWT, etc. The company does not make money from selling the Chrome browser, and unlike Microsoft, it doesn't make money from selling an OS. The incentives are not aligned like the way they were with IE and Windows. At the end of the day, Google makes money from people using the web. The real threat is from the Web falling too far behind Native.
Also, the Web is far far bigger than the programming language Javascript. For the first 10+ years of the Web, people hardly even used JS except for form validation, and in general, on mobile, excessive amounts of JS lead to poor performance.
There's still a ways to go on just HTML and CSS, and I'd frankly be more concerned about fragmentation in that area rather than fixation on Javascript.
The way I see the potential of a DartVM is the same as OdinMonkey+asm.js. Dart compiles to JS, but DartVM will run it slightly faster, but it will always work on all browsers. Likewise, asm.js will work on all browsers, but will always run faster on OdinMonkey. Both Mozilla and Google have VMs that potentially bifurcate performance across browsers, but still produce outputs that can run (albeit slower)
The concerns you should have about Google misusing Dart I think should really be about Google misusing market share. It's not really Dart per se that's the issue, it's the fact that if Chrome is the dominant browser, Google can drop anything they want into it, not just Dart, but any APIs they want.
reply