Is there anyway to easily compile CoffeeScript on save? I'm using TextMate or Sublime Text 2.
|
|
Coffeescript has a 'watch' feature. You could set up, as a semi-permanent process:
And for every file with an extension ".coffee", the corresponding compiled ".js" file will be put into the target directory every time you save. That said, I use a makefile and a fabfile, because my HTML is HAML, my CSS is LessCSS, and my development directory is not my test path, so I needed something smart enough to "build and deploy." If your machine supports inotify, you could use inotifywait to watch your entire work path, and call Make as needed. But at that point, you're into hard-core geekery. |
|||||||||||||
|
|
You can also accomplish this without the command line:
So instead of compiling on save, you're saving on compile. |
|||
|
|
|
If you also want bundling, buildr offers watching and bundling too: https://github.com/balupton/buildr.npm
|
|||
|
|
|
Well
The solution I came up with is a rather simple Bash script that takes http://blog.gantrithor.com/post/11609373640/carefree-coffeescript-auto-compiler There may be more elegant way to do this, but this implementation works great =) |
|||||
|
The best solution I have found compared with all other static compilation tools like StaticMatic, Middleman, etc. Very flexible and configurable and does not rely on any preset folder structure. Just add |
|||
|
|
|
I like codekit :) Simple and effective way to compile coffeescript, sass, less, haml, and more, with lots of niceties. http://incident57.com/codekit/ |
|||
|
|