Skip to content

Instantly share code, notes, and snippets.

@robwormald
Created February 6, 2014 19:41
Show Gist options
  • Save robwormald/8851182 to your computer and use it in GitHub Desktop.
Save robwormald/8851182 to your computer and use it in GitHub Desktop.
//1st way
module.exports.foo = function(){
console.log('foo!')
}
module.exports.bar = function(){
console.log('bar!')
}
//2nd way
module.exports = {
foo : function(){
console.log('foo!')
},
bar = function(){
console.log('bar!')
}
}
//in controller
FooService.foo()
FooService.bar()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment