{{#better_markdown}}
# Examples
The source to all our Meteor examples is
available
on GitHub.
git clone git@github.com:meteor/meteor.git
cd meteor/examples/todos
meteor
## Leaderboard
The `leaderboard` example shows a basic Meteor application. This
example is under 100 lines of JavaScript. Read the source
on GitHub or check out the
live
example. Try opening it in two browsers simultaneously!
## Todos
The second example is the classic Todos application. Our version
includes several advanced features demonstrating the power of the
Meteor platform.
- Persistence
- Your todo items are fully persistent, whether running locally or
deployed to a server. They survive across browser reloads and Meteor
restarts.
- Multi-user
- Meteor automatically synchronizes database state across
multiple clients. Try opening the demo in two different browsers!
- Tagging and filtering
- To demonstrate how easy it is to sort and
filter data with Meteor, we added tags to todo items. Each item can be
tagged with multiple tags, and you can filter on those tags.
- Templates
- Todos uses Meteor's
reactive Handlebars templates to generate and update DOM elements.
Check out the live todos example at
todos.meteor.com. The source is about 250 lines of JavaScript and is on GitHub.
{{/better_markdown}}