Skip to content

Instantly share code, notes, and snippets.

@alexslade
Created March 16, 2014 21:34
Show Gist options
  • Save alexslade/9590271 to your computer and use it in GitHub Desktop.
Save alexslade/9590271 to your computer and use it in GitHub Desktop.
# client/app.js.coffee
Meteor.startup ->
Meteor.call "swag", (error, result) ->
console.log(result)
# => Object {}
# Where is the foo method??
# server/methods.js.coffee
Meteor.startup ->
Meteor.methods
'swag': ->
return {
foo: ->
"bar"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment