A quick and dirty way to use namespaces in CoffeeScript
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
# Code: | |
# | |
namespace = (target, name, block) -> | |
[target, name, block] = [exports ? window, arguments...] if arguments.length < 3 | |
top = target | |
target = target[item] or= {} for item in name.split '.' | |
block target, top | |
# Usage: | |
# | |
namespace 'Hello.World', (exports) -> | |
# `exports` is where you attach namespace members | |
exports.hi = -> console.log 'Hi World!' | |
namespace 'Say.Hello', (exports, top) -> | |
# `top` is a reference to the main namespace | |
exports.fn = -> top.Hello.World.hi() | |
Say.Hello.fn() # prints 'Hi World!' |
There you have it – should work both in the browser and on the server.