Skip to content

Instantly share code, notes, and snippets.

@Radagaisus
Created May 14, 2012 06:06
Show Gist options
  • Select an option

  • Save Radagaisus/2692091 to your computer and use it in GitHub Desktop.

Select an option

Save Radagaisus/2692091 to your computer and use it in GitHub Desktop.
Fuck Require
# Thank you ZapaaJS!
# congrats to require() for making nodejs so awful
# for dividing code to files.
include = (file, args...) ->
file = require file
file.include.apply(this, args)
file
# index.coffee
@stuff = 3
include './something'
# something.coffee
stuff = 5
@include = ->
log @stuff # 3
log stuff # 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment