Is there a way to integrate CoffeeScript and Eclipse, so that when I write CoffeeScript in one window the other will show the compiled code as Javascript?
I\'ll wait for
I'm using coffee
s -w
option for this. Open a terminal, cd
to your project directory and then run coffee -w ./coffee -c ./js
. Assuming that your coffee
files are stored in a folder named coffee
and you are compiling your files to a folder named js
.
Keep the terminal open while your coding session. coffee
will compile your script every time you resave the file.