Hacker News new | ask | show | jobs
by leftrightupdown 3448 days ago
We are writing spa frontend for email marketing service in dart. No angular, react, just lots of plain dart. Strong analyzer mode is used and dartium is always in checked mode. Dart shined most when we created drag and drop html editor. We like using it anl if anyone wants to know why we used dart ask for details. Check our app at listshine.com
1 comments

Yea I found just using plane Dart to work really well. I preferred it over Angular. I had an entire functioning web app in about 80kbs, including all images, html, css, and JS. That was a while back, I'm sure its only gotten better.
What i personally liked is that we write once and in 99.9% cases generated js is compatible with all browsers. Also type checking and strong analyzer mode helped catch ton of bugs. Im sure if you bet your next project on this tech you wont be sorry. Fast code and fast development with webdev batteries included.
Yea actually I forgot about how slow it was to compile to JS. They are saying it should around 100MS now to do a dev compile. So its feasible to use other browsers actively during development. That is probably the biggest thing for me they announced at the Dart Con.