Earlier quoted context omitted.
I use Dart in production, it has its advatages like: 1.- It is better than JavaScript, is like using C# with a litle mix of Java. 2.- It comes with its own libraries, no more underscore.js or other patch libraries that JS needs, it is already in the toolkit. 3.- It comes with the Dart Editor, where you can debug your code easily, for scalable projects I find this to be invaluable. 4.- It will run in all your browsers…
Does it have anything like AngularJS?
Dart 1.5
31–40 of 167 posts
Re: Dart 1.5
#32Earlier quoted context omitted.
I use Dart in production, it has its advatages like: 1.- It is better than JavaScript, is like using C# with a litle mix of Java. 2.- It comes with its own libraries, no more underscore.js or other patch libraries that JS needs, it is already in the toolkit. 3.- It comes with the Dart Editor, where you can debug your code easily, for scalable projects I find this to be invaluable. 4.- It will run in all your browsers…
Does it have anything like AngularJS?
Re: Dart 1.5
#33Earlier quoted context omitted.
Why do you want it to be supported in Chrome? Any performance improvements seen by your users won't apply to those using any other browser.
Because then his userbase goes from being an extremely small niche(chromium is probably less than 1%) to a much larger niche(chrome is more than 30%).
There are some real potential wins with being in Chrome, many of which are political, but there are no technical reasons for not being in Chrome to block Dart's adoption.
Re: Dart 1.5
#34Has this version been submitted to ECMA?
Re: Dart 1.5
#35Re: Dart 1.5
#36Earlier quoted context omitted.
I use Dart in production, it has its advatages like: 1.- It is better than JavaScript, is like using C# with a litle mix of Java. 2.- It comes with its own libraries, no more underscore.js or other patch libraries that JS needs, it is already in the toolkit. 3.- It comes with the Dart Editor, where you can debug your code easily, for scalable projects I find this to be invaluable. 4.- It will run in all your browsers…
Does it have anything like AngularJS?
Re: Dart 1.5
#37This may be a noob question on my part, but my understanding is Dart and Rust are 2 separate efforts to come up with something to supplant javascript?
No. Rust is a systems language meant to displace c and c++. Dart is Google's me-too attempt at creating something which compiles to JavaScript. It borrows heavily from java and generates equally bloated code. OK, so maybe last sentence is a bit over the top critical, but last I checked, hello world in dart rendered in at 100kb [1] of js and dependencies. [1] http://lostechies.com/jimmybogard/2011/10/12/the-dart-hello…
Dart 1.5.1 produces nowhere near that much for the same input, producing just 14KB (see [1]). Yes, arguably still too verbose, but note that much of the overhead is essentially a Dart-compatibility support library, so remains constant as the amount of Dart increases.
Re: Dart 1.5
#38Is anybody using Dart for significant production code outside of Google? (Not mocking, genuinely curious to hear whats being done with it)
https://www.dartlang.org/community/who-uses-dart.html
Re: Dart 1.5
#39Earlier quoted context omitted.
Because then his userbase goes from being an extremely small niche(chromium is probably less than 1%) to a much larger niche(chrome is more than 30%).
Do you mean that Chromium now has a Dart VM? The last time I checked it didn't, there was a buggy thing called Dartium.
Re: Dart 1.5
#40This may be a noob question on my part, but my understanding is Dart and Rust are 2 separate efforts to come up with something to supplant javascript?