Implements a CoffeeScript compiler into Komodo.
Download the lastest version and open with Komodo or follow these instructions
Goto to Tools -> CoffeeScript and select an option.
- Compile Saved File takes a .coffee file and compiles it into javascript and saves a new file with the same name but ending in .js
- Compile Current Buffer takes the contents of the current buffer and compiles it into javascript.
- Compile Selection takes the current selection and compiles it into javascript.
You can create a macro that will automatically compiles a CoffeeScript file when you save. Use the following code and have it trigger After file save:
if (extensions.coffeescript) {
extensions.coffeescript.compileFile();
}