What is the easiest way to compile all .coffee files in the current directory and all sub-directories?
If you are using *nix systems:
find -name "*.coffee" -exec coffee -c {} \;
and you may also consider using Guard: https://github.com/guard/guard-coffeescript
Guard