I'm using Node.js and wanting to incorporate CoffeeScript into my workflow. I have two use-cases:
- I want to be able to write JavaScript files which require() CoffeeScript modules
- I want to be able to load CoffeeScript modules from within the node REPL
For case #1 I can just compile from .coffee to .js and require() the .js module, as a workaround. For case #2 right now I'm eval()'ing the output of coffee-script.compile().
Is there a better, more unified way to do this?
coffee? – Box9 Jan 22 '11 at 15:53coffeeREPL is now awesome :) – nicolaskruchten Sep 11 '11 at 2:31