20

Introduction To Dart (GDG NY Jan 2014 Meetup)

Embed Size (px)

DESCRIPTION

'Warm up' event for Dart Flight School with focus on providing the big picture on Dart.

Citation preview

Page 1: Introduction To Dart (GDG NY Jan 2014 Meetup)
Page 2: Introduction To Dart (GDG NY Jan 2014 Meetup)

●●

●●

Page 3: Introduction To Dart (GDG NY Jan 2014 Meetup)
Page 4: Introduction To Dart (GDG NY Jan 2014 Meetup)
Page 5: Introduction To Dart (GDG NY Jan 2014 Meetup)

Pac

kage

s

Page 7: Introduction To Dart (GDG NY Jan 2014 Meetup)
Page 8: Introduction To Dart (GDG NY Jan 2014 Meetup)
Page 9: Introduction To Dart (GDG NY Jan 2014 Meetup)

Familiar Concepts

SimplifiedSyntax

Learn the language in an hour..

Page 10: Introduction To Dart (GDG NY Jan 2014 Meetup)

Be productive in two..

ExtensiveTools

Page 11: Introduction To Dart (GDG NY Jan 2014 Meetup)

Choose what works best for YOU ..

Flexible usage

Page 12: Introduction To Dart (GDG NY Jan 2014 Meetup)

Run Dart in stand-alone VM(../bin/dart executable in SDK)

Dart for Servers(dart:io library)

Page 13: Introduction To Dart (GDG NY Jan 2014 Meetup)

Run Dart natively, efficiently, at client(custom build of Chromium)

Dart for Clients(VM in browser)

Page 14: Introduction To Dart (GDG NY Jan 2014 Meetup)

$ dart2js main.dart --minify -o main.dart.js

Compile to JavaScript, JS Interop(No FOMO)

Dart for Modern Browsers(today)

Page 15: Introduction To Dart (GDG NY Jan 2014 Meetup)

Package Manager for Dart (reuse)

Page 16: Introduction To Dart (GDG NY Jan 2014 Meetup)

$ pub publish //publishes to pub.dartlang.org

Page 17: Introduction To Dart (GDG NY Jan 2014 Meetup)
Page 20: Introduction To Dart (GDG NY Jan 2014 Meetup)