Unfancy JavaScript
Go to file
Jeremy Ashkenas 7ae8687a3e fixing paths for running
coffee compiles CoffeeScript source files into JavaScript.

Usage:
  coffee path/to/script.coffee
    -i, --interactive                run a CoffeeScript REPL (requires Narwhal)
    -r, --run                        compile and run a script (requires Narwhal)
    -o, --output [DIR]               set the directory for compiled JavaScript
    -w, --watch                      watch scripts for changes, and recompile
    -p, --print                      print the compiled JavaScript to stdout
    -l, --lint                       pipe the compiled JavaScript through JSLint
    -e, --eval                       compile a cli scriptlet or read from stdin
    -t, --tokens                     print the tokens that the lexer produces
    -v, --verbose                    print at every step of code generation
    -n, --no-wrap                    raw output, no safety wrapper or vars
        --install-bundle             install the CoffeeScript TextMate bundle
        --version                    display CoffeeScript version
    -h, --help                       display this help message outside of the coffee-script directory
2009-12-27 12:43:05 -08:00
bin changed bin/coffee-script to bin/coffee 2009-12-26 08:57:13 -08:00
documentation coffeescript 0.1.5, just for kicks 2009-12-26 21:25:37 -08:00
examples more underscore examples 2009-12-27 11:01:19 -08:00
lib fixing paths for running 2009-12-27 12:43:05 -08:00
test got negative ranges working with (much, much) uglier compiled code 2009-12-26 20:35:43 -08:00
.gitignore built the first gem -- works just fine 2009-12-16 23:10:03 -05:00
LICENSE completely reorganized for a gem and the 'coffee-script' command 2009-12-16 22:42:53 -05:00
README changed bin/coffee-script to bin/coffee 2009-12-26 08:57:13 -08:00
Rakefile changed bin/coffee-script to bin/coffee 2009-12-26 08:57:13 -08:00
coffee-script.gemspec coffeescript 0.1.5, just for kicks 2009-12-26 21:25:37 -08:00
index.html coffeescript 0.1.5, just for kicks 2009-12-26 21:25:37 -08:00
package.json coffeescript 0.1.5, just for kicks 2009-12-26 21:25:37 -08:00

README

=                              
            {                   
         }   }   {              
        {   {  }  }             
         }   }{  {               
        {  }{  }  }                    _____       __  __           
       ( }{ }{  { )                   / ____|     / _|/ _|          
     .- { { }  { }} -.               | |     ___ | |_| |_ ___  ___ 
    (  ( } { } { } }  )              | |    / _ \|  _|  _/ _ \/ _ \ 
    |`-..________ ..-'|              | |___| (_) | | | ||  __/  __/ 
    |                 |               \_____\___/|_| |_| \___|\___|
    |                 ;--.           
    |                (__  \            _____           _       _   
    |                 | )  )          / ____|         (_)     | |  
    |                 |/  /          | (___   ___ _ __ _ _ __ | |_ 
    |                 (  /            \___ \ / __| '__| | '_ \| __|
    |                 |/              ____) | (__| |  | | |_) | |_ 
    |                 |              |_____/ \___|_|  |_| .__/ \__|
     `-.._________..-'                                  | |        
                                                        |_|
                  
                                                        
  CoffeeScript is a little language that compiles into JavaScript.
  
  Install the compiler:
  gem install coffee-script
  
  Compile a script:
  coffee /path/to/script.coffee
  
  For documentation, usage, and examples, see:
  http://jashkenas.github.com/coffee-script/
  
  To suggest a feature or report a bug:
  http://github.com/jashkenas/coffee-script/issues/

  The source repository:
  git://github.com/jashkenas/coffee-script.git