Top Banner
Roma 2014 Google DevFest
26

Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Aug 20, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Roma 2014

Google DevFest

Page 2: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Join the Dart Side

of Web Development

Giovanni Laquidara

Claudio d’Angelis

e il Team del GDG Roma L-Ab

Page 3: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

● Language

● Libraries

● Tools

● Compilation to JavaScript

Page 4: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Dart is open source ● BSD-style license

● dart.googlecode.com

● GitHub mirror

● Contributing guide

● ECMA Standard (TC52)

● Production ready (1.7)

Page 5: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Compiles to JavaScript,

runs across the modern web

Page 6: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Run Dart on the server with the Dart VM

Page 7: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

● New language, familiar syntax

● Rich libraries

● Consistent semantics

Page 8: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

"Coffee".missing // ??

Class 'String' has no instance getter 'missing'. NoSuchMethodError :

method not found: 'missing'

Receiver: "Coffee"

Arguments: []

Page 9: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

“2” > 1 // ??

Unhandled exception:

Class 'String' has no instance method '>'.

NoSuchMethodError : method not found: '>'

Receiver: "2"

Arguments: [1]

Page 10: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation
Page 11: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Built-in libraries

async

collection

convert

core

html

indexed_db

io

isolate

js

math

mirrors

svg

typed_data

web_audio

web_gl

web_sql

Kansas City Public Library

Page 12: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation
Page 13: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation
Page 14: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation
Page 15: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation
Page 16: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Asynchronous and

concurrent programming

https://www.flickr.com/photos/huskyte/8519749145/in/photostream/

Futures

Streams

Isolates

Page 17: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation
Page 18: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation
Page 19: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Dart-to-JS Compiler

& Performance

Dart2js' s features:

● Minification & Source Maps

● Global type inference

● Tree-shaking

− Compile-time dead code elimination

Page 20: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

main Library

baz foo bar boo

imports

calls baz

main foo bar

dart2js

Page 21: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

https://dartlang.org/performance

Page 22: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

● IDE: Dart Editor

● Package Manager: pub

● JS compiler: dart2js

● Library documentation generator: docgen

● Static analyzer: dartanalyzer

● Chromium with Dart VM: Dartium

Language, Libraries & Tools

Page 23: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Polymer.dart AngularDart

Page 24: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Homepage: https://dartlang.org

API Reference: https://api.dartlang.org

Pub Packages: https://pub.dartlang.org

AngularDart: https://angulardart.org

Polymer.dart: https://dartlang.org/polymer-dart

Page 25: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Claudio d'Angelis

Twitter: @daw985

Google+, Github: claudiodangelis

Giovanni Laquidara

Twitter: @joaolaq

Google+: +giovannilaquidara

Github: joaobiriba

Page 26: Google DevFest Roma 2014 · Google DevFest . Join the Dart Side of Web Development Giovanni Laquidara Claudio d’Angelis e il Team del GDG Roma L-Ab Language Libraries Tools Compilation

Roma 2014

Google DevFest

Claudio d'Angelis

Twitter: @daw985

Google+, Github: claudiodangelis

Giovanni Laquidara

Twitter: @joaolaq

Google+: +giovannilaquidara

Github: joaobiriba