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

SeattleJS: Get Back to basics with Meteor

SeattleJS: Get Back to basics with Meteor

Presentation from SeattleJS meetup March 2013: http://www.meetup.com/seattlejs/events/104167682/

Keynote file with animated GIFs:
https://dl.dropbox.com/u/26753468/Presentations/MeteorSeattle.key

Yuriy Dybskiy

March 14, 2013
Tweet

More Decks by Yuriy Dybskiy

Other Decks in Programming

Transcript

  1. 1. Data on the Wire Don't send HTML over the

    network. Send data and let the client decide how to render it.
  2. 2. One Language Write both the client and the server

    parts of your interface in JavaScript
  3. 3. Database Everywhere Use the same transparent API to access

    your database from the client or the server.
  4. 4. Latency Compensation On the client, use prefetching and model

    simulation to make it look like you have a zero-latency connection to the database
  5. 5. Full Stack Reactivity Make realtime the default. All layers,

    from database to template, should make an event-driven interface available
  6. 6. Embrace the Ecosystem Meteor is open source and integrates,

    rather than replaces, existing open source tools and frameworks
  7. 7. Simplicity Productivity The best way to make something seem

    simple is to have it actually be simple. Accomplish this through clean, classically beautiful APIs =