I've just started getting into meteor, customizing their tutorials, but this technology is awesome! Try this:

  1. Go to my leaderboard page I uploaded and open it in two chrome windows.
  2. Play around incrementing the various scores for each of the scientists. You'll see the other window update almost instantaneously.
  3. Open the JS console (by hitting ctrl-shift-j), and enter Players.insert({name: "Leonardo Davinci", score:60});.

This will update the js in your browser window... and the server will store updates and push them back to the other window! Is that cool or what?

Best of all, is it barely took any code-- html:41 lines, js:61 lines, css:62 lines.

Go to meteor.com to learn more!

Leave a Reply

Your email address will not be published. Required fields are marked *