Skip to content

Instantly share code, notes, and snippets.

@possibilities
Last active February 16, 2017 17:53
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save possibilities/4685332 to your computer and use it in GitHub Desktop.
Save possibilities/4685332 to your computer and use it in GitHub Desktop.

Seven Principles of Meteor

  • Data on the Wire. Don't send HTML over the network. Send data and let the client decide how to render it.

  • One Language. Write both the client and the server parts of your interface in JavaScript.

  • Database Everywhere. Use the same transparent API to access your database from the client or the server.

  • Latency Compensation. On the client, use prefetching and model simulation to make it look like you have a zero-latency connection to the database.

  • Full Stack Reactivity. Make realtime the default. All layers, from database to template, should make an event-driven interface available.

  • Embrace the Ecosystem. Meteor is open source and integrates, rather than replaces, existing open source tools and frameworks.

  • Simplicity Equals Productivity. The best way to make something seem simple is to have it actually be simple. Accomplish this through clean, classically beautiful APIs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment