Skip to content

Instantly share code, notes, and snippets.

@bensonk
Created April 14, 2012 22:50
Show Gist options
  • Save bensonk/2388367 to your computer and use it in GitHub Desktop.
Save bensonk/2388367 to your computer and use it in GitHub Desktop.
if (Meteor.is_client) {
var people = new Meteor.Collection("people");
people.insert({name: "Benson"});
Template.people.names = function() {
return people.find();
};
}
if (Meteor.is_server) {
Meteor.startup(function () {
// code to run on server at startup
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment