What is the easiest way to compile all .coffee files in the current directory and all sub-directories?
you can do so with the integrated coffee shell tool:
coffee
coffee --output lib --compile src
compiles a directory tree of .coffee files in src into a parallel tree of .js files in lib. Check http://coffeescript.org/#usage for more details
src
lib