Upgrade to Pro — share decks privately, control downloads, hide ads and more …

The Future of Ember Templating

The Future of Ember Templating

This talk is a technical deep dive into the implementation of Glimmer 2, and what it will enable going forward.

It will cover the basic architecture of Glimmer 2, how it integrates with Ember, and how it fits in with FastBoot and Progressive Web Apps.

Godfrey Chan

March 31, 2016
Tweet

More Decks by Godfrey Chan

Other Decks in Programming

Transcript

  1. ⚠ Serious Warning™ Very dense and technical content ahead. TypeScript

    code examples included. It probably won't help you with your job. You might want to reconsider going to @mixonic's components talk instead.
  2. No idea what this talk is about but it's hilarious

    @chancancode #EmberConf Luke Melia @lukemelia
  3. let)foo)=)1;) let)bar)=)2;) let)fooReference:)Reference<number>)=){) ))value()){)return)foo;)}) };) let)barReference:)Reference<number>)=){) ))value()){)return)bar;)}) };) let)fooPlusBarReference:)Reference<number>)=){) ))value()){)

    ))))return)fooReference.value())+)barReference.value();) ))}) };) fooPlusBarReference.value();)//)=>)3) foo)=)2;) fooPlusBarReference.value();)//)=>)4) bar)=)3;) fooPlusBarReference.value();)//)=>)5)