I'm using Node.js and wanting to incorporate CoffeeScript into my workflow. I have two use-cases:

  1. I want to be able to write JavaScript files which require() CoffeeScript modules
  2. 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?

link|improve this question

What about the CoffeeScript REPL, coffee? – Box9 Jan 22 '11 at 15:53
That REPL is very primitive compared to the node one: it lacks colour, autocompletion, multi-line statements etc – nicolaskruchten Jan 22 '11 at 19:06
Update: the coffee REPL is now awesome :) – nicolaskruchten Sep 11 '11 at 2:31
feedback

1 Answer

up vote 32 down vote accepted

The coffee-script module registers its extension once required.

$ echo 'console.log "works"' > module.coffee

$ echo '
> require("coffee-script")
> require("./module")
> ' > test.js

$ node test.js
works

$ node
> require('coffee-script'); require('./module')
works
{}
link|improve this answer
Huh, why didn't I think of that? :) – nicolaskruchten Jan 22 '11 at 19:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.