Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alisey/CoffeeScript-Compiler-for-Windows
Standalone executable that compiles *.coffee to *.js. Options are compatible with the original coffee command.
https://github.com/alisey/CoffeeScript-Compiler-for-Windows
Last synced: 3 months ago
JSON representation
Standalone executable that compiles *.coffee to *.js. Options are compatible with the original coffee command.
- Host: GitHub
- URL: https://github.com/alisey/CoffeeScript-Compiler-for-Windows
- Owner: alisey
- Archived: true
- Created: 2010-10-09T11:27:13.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2017-04-18T17:25:43.000Z (over 7 years ago)
- Last Synced: 2024-07-16T14:07:14.424Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.54 MB
- Stars: 202
- Watchers: 13
- Forks: 23
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### This compiler is obsolete
Instead, use these simple official installation steps:1. Download and run [Node.js installer](http://nodejs.org/download/).
2. Run on the command line: `npm install -g coffee-script`
3. That's all. You can now run `coffee` from any directory.---
### Old description
This is a standalone [CoffeeScript](http://coffeescript.org/) compiler for Windows. Download coffee.exe to your Windows directory, or add it to your %PATH%. Usage is identical to the original `coffee` command, except that `--watch` is not supported:-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 optionsIf a directory is specified as a source, all .coffee files in that directory will be compiled recursively.
To update CoffeeScript:
* Download latest [coffee-script.js](https://raw.github.com/jashkenas/coffee-script/master/extras/coffee-script.js) to the same directory as coffee.exe
* Check version: coffee --version