Unfancy JavaScript
Go to file
Jeremy Ashkenas 807e0b479d add a note about installing Node.js first 2010-02-17 10:29:13 -05:00
bin added experimental (but working) method to install CoffeeScript: 'sudo bin/cake install' -- once you've done that, you can take cake and coffee out of their bin/ 2010-02-17 01:24:02 -05:00
documentation reorganizing lib/coffee_script to plain ol' lib 2010-02-17 00:55:56 -05:00
examples removing underscore as a dependency for nodes.coffee -- let's be minimal 2010-02-16 18:38:03 -05:00
extras The Great Purge. Removing the Ruby compiler, and all of its accoutrements. bin/coffee is now CoffeeScript-in-CoffeeScript 2010-02-17 00:33:55 -05:00
lib Updating fs module to the latest Node.js -- that's fs.readFile, not fs.cat, with string flags for fs.open 2010-02-17 08:51:27 -05:00
src Updating fs module to the latest Node.js -- that's fs.readFile, not fs.cat, with string flags for fs.open 2010-02-17 08:51:27 -05:00
test finished converting the test suite, to run it, do: bin/node_coffee -r tasks.coffee -- test 2010-02-16 19:45:25 -05:00
vendor/jison removing the vendored optparse in favor of a pure-coffeescript optparse library 2010-02-14 15:16:33 -05:00
.gitignore adding the compiled parser back into the repo (after all that) so that it can be used as the source for the narwhal package 2010-01-23 12:44:36 -05:00
Cakefile Updating fs module to the latest Node.js -- that's fs.readFile, not fs.cat, with string flags for fs.open 2010-02-17 08:51:27 -05:00
LICENSE bumping the license to 2010 2010-01-10 17:57:29 -05:00
README add a note about installing Node.js first 2010-02-17 10:29:13 -05:00
Rakefile removing all tasks from the Rakefile except for 'doc' ... we might need to keep that around for a while 2010-02-17 00:26:03 -05:00
index.html reorganizing lib/coffee_script to plain ol' lib 2010-02-17 00:55:56 -05:00
package.json reorganizing lib/coffee_script to plain ol' lib 2010-02-17 00:55:56 -05:00

README

=                              
            {                   
         }   }   {              
        {   {  }  }             
         }   }{  {               
        {  }{  }  }                    _____       __  __           
       ( }{ }{  { )                   / ____|     / _|/ _|          
     .- { { }  { }} -.               | |     ___ | |_| |_ ___  ___ 
    (  ( } { } { } }  )              | |    / _ \|  _|  _/ _ \/ _ \ 
    |`-..________ ..-'|              | |___| (_) | | | ||  __/  __/ 
    |                 |               \_____\___/|_| |_| \___|\___|
    |                 ;--.           
    |                (__  \            _____           _       _   
    |                 | )  )          / ____|         (_)     | |  
    |                 |/  /          | (___   ___ _ __ _ _ __ | |_ 
    |                 (  /            \___ \ / __| '__| | '_ \| __|
    |                 |/              ____) | (__| |  | | |_) | |_ 
    |                 |              |_____/ \___|_|  |_| .__/ \__|
     `-.._________..-'                                  | |        
                                                        |_|
                  
                                                        
  CoffeeScript is a little language that compiles into JavaScript.
  
  Install Node.js, and then install the CoffeeScript compiler:
  sudo bin/cake install
  
  Compile a script:
  coffee /path/to/script.coffee
  
  For documentation, usage, and examples, see:
  http://jashkenas.github.com/coffee-script/
  
  To suggest a feature, report a bug, or general discussion:
  http://github.com/jashkenas/coffee-script/issues/
  
  If you'd like to chat, drop by #coffeescript on Freenode.

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