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 answers. Thanks.
CoffeeScript tends to run as fast, or faster than hand-written JavaScript.
If you are looking to implement coffee script in html, take a look at this. You simple need to add a <script type="text/coffeescript" src="app. coffee"></script> to execute coffee script code in an HTML file.
I've done it with a builder and a small shell script in my project. Every time I save a .coffee file, it compiles all my scripts. Works great.
Right click on your project. Select properties near the bottom of the menu.
ProjectName/coffee-compile.sh:
#!/bin/bash if [ ! -d ./target/coffee ]; then mkdir -p ./target/coffee fi echo "Compiling coffee script files..." /usr/bin/coffee --output ./target/coffee --compile ./coffee echo "Done..."
The builder definition is saved as part of your project. It is in the .settings folder. That way, other developers can check out your project as well and have everything already set up.
Update: For code formatting and coloring, I ended up installing the latest beta of Aptana into Eclipse.
Update2: I've stopped using Eclipse in favor of Intellij. The editors and built in support for compiling code are wonderful. I highly suggest you try it out.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With