ZeroNet/tools/coffee
shortcutme 1f83b6691b
Fix CoffeeScript 1.12 support
2017-06-13 14:24:10 +02:00
..
README.md First release, remove not used lines from gitignore 2015-01-12 02:03:45 +01:00
coffee-script.js Update CoffeeScript to 1.12.6 2017-05-16 10:56:12 +02:00
coffee.cmd First release, remove not used lines from gitignore 2015-01-12 02:03:45 +01:00
coffee.wsf Fix CoffeeScript 1.12 support 2017-06-13 14:24:10 +02:00

README.md

CoffeeScript compiler for Windows

A simple command-line utilty for Windows that will compile *.coffee files to JavaScript *.js files using CoffeeScript and the venerable Windows Script Host, ubiquitous on Windows since the 90s.

Usage

To use it, invoke coffee.cmd like so:

coffee input.coffee output.js

If an output is not specified, it is written to stdout. In neither an input or output are specified then data is assumed to be on stdin. For example:

type input.coffee | coffee > output.js

Errors are written to stderr.

In the test directory there's a version of the standard CoffeeScript tests which can be kicked off using test.cmd. The test just attempts to compile the *.coffee files but doesn't execute them.

To upgrade to the latest CoffeeScript simply replace coffee-script.js from the upstream https://github.com/jashkenas/coffee-script/blob/master/extras/coffee-script.js (the tests will likely need updating as well, if you want to run them).