Web Unleashed 2013

2013-11-07 00:00:00 2013-11-09 00:00:00 America/Toronto Web Unleashed 2013 FITC is back in New England for Web Unleashed 2013 with a ton of learning and collaborating opportunities over a two-day period: day one features a wide range of conference sessions focusing on front-end development and day two takes a deep dive into specific topics with… Waltham, MA FITC Waltham, MA

Presentation


Overview

Meteor allows you to quickly create new web applications. Using a single code base for the client and the server, no-sql mongo, template-oriented UX organization and painless deployment, designing and developing with Meteor is fun. But the real game changer is Reactivity.

Reactivity is made up of two parts – data sources and computations. When you build a page, Meteor remembers the computations that use reactive data sources. Then, when a data in a reactive source changes, the computations that depend on the data are invalidated and re-run – which can re-render the affected parts of your application. The true beauty of it is that it’s all automatic. You don’t need to write any code to watch for changes – Meteor does all that for you.

Learning to build web applications in the Reactive Style gives you more time to concentrate on UX than traditional web development. Being able to side-step much of the application setup and data management frees you to focus on providing a pleasurable experience as well as useful functionality.