Skip to content
This repository has been archived by the owner on Nov 27, 2018. It is now read-only.

Latest commit

 

History

History
26 lines (20 loc) · 1.24 KB

File metadata and controls

26 lines (20 loc) · 1.24 KB

This is a standalone executable allowing you to compile CoffeeScript files on Windows.
Download coffee.exe to your Windows directory (or any other directory in your %PATH%)

###Usage Same as the original coffee command:

-c, --compile       compile to JavaScript and save as .js files
-o, --output [DIR]  set the directory for compiled JavaScript
-j, --join [FILE]   concatenate the scripts before compiling
-b, --bare          compile without the top-level function wrapper
-v, --version       display CoffeeScript version
-h, --help          display a list of available options

If you specify a directory as a source, all .coffee files in that directory will be compiled recursively.

###Updating CoffeeScript

  • Download latest coffee-script.js to the same directory as coffee.exe
  • Check version: coffee --version

###Better solution