Created
February 7, 2012 05:18
-
-
Save markdaws/1757378 to your computer and use it in GitHub Desktop.
Example of how to share JavaScript between client and node.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function(exports) { | |
if(!exports) { | |
// This is client side code | |
window.MyApp = window.MyApp = window.MyApp || {}; | |
exports = window.MyApp.common = window.MyApp.common || {} | |
} | |
exports.foo = function() { | |
return 'bar'; | |
}; | |
})((typeof process === 'undefined') || !process.versions ? null : exports); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment