Unfancy JavaScript
Go to file
Marc Häfner 3c38a34ab2 Fix line numbers when first line is indented.
* Offset @chunkLine for inserted line break.
* Avoid line break insertion for blank lines.
2013-03-01 21:30:07 +01:00
bin Moved src/*.coffee under src/coffee-script/ so that lib can be added to $NODE_PATH and only expose the top-level coffee-script namespace. Fixes #1246 2011-07-05 21:58:04 +10:00
documentation expanding literate explanation 2013-02-25 22:29:42 +13:00
examples Correct incorrect line in blocks.coffee 2012-07-02 08:36:00 -07:00
extras CoffeeScript 1.5.0 2013-02-25 21:12:22 +13:00
lib/coffee-script Fix line numbers when first line is indented. 2013-03-01 21:30:07 +01:00
src Fix line numbers when first line is indented. 2013-03-01 21:30:07 +01:00
test Fix line numbers when first line is indented. 2013-03-01 21:30:07 +01:00
.gitignore ignore litcoffee files 2012-09-25 17:50:04 -05:00
.npmignore fixes issue #1490 ... jsl.conf is incorrectly npmignored. 2011-07-06 22:15:35 -04:00
CNAME trying with just the .org 2011-10-31 22:54:32 -04:00
CONTRIBUTING.md Adding a CONTRIBUTING to CoffeeScript. 2012-09-17 13:16:41 -04:00
Cakefile Merging in .coffee.md support alongside .litcoffee ... I think we'll keep .litcoffee as the canonical, however. 2013-03-01 12:46:40 +13:00
LICENSE CoffeeScript 1.3.0 2012-04-10 14:57:45 -04:00
README README: corrected compilation instruction; added execution instruction 2011-08-09 00:23:55 -03:00
Rakefile fix spacing in Rakefile 2013-01-29 12:11:45 +01:00
index.html expanding literate explanation 2013-02-25 22:29:42 +13:00
package.json CoffeeScript 1.5.0 2013-02-25 21:12:22 +13:00

README

            {
         }   }   {
        {   {  }  }
         }   }{  {
        {  }{  }  }                    _____       __  __
       ( }{ }{  { )                   / ____|     / _|/ _|
     .- { { }  { }} -.               | |     ___ | |_| |_ ___  ___
    (  ( } { } { } }  )              | |    / _ \|  _|  _/ _ \/ _ \
    |`-..________ ..-'|              | |___| (_) | | | ||  __/  __/
    |                 |               \_____\___/|_| |_| \___|\___|
    |                 ;--.
    |                (__  \            _____           _       _
    |                 | )  )          / ____|         (_)     | |
    |                 |/  /          | (___   ___ _ __ _ _ __ | |_
    |                 (  /            \___ \ / __| '__| | '_ \| __|
    |                 |/              ____) | (__| |  | | |_) | |_
    |                 |              |_____/ \___|_|  |_| .__/ \__|
     `-.._________..-'                                  | |
                                                        |_|


  CoffeeScript is a little language that compiles into JavaScript.

  Install Node.js, and then the CoffeeScript compiler:
  sudo bin/cake install

  Or, if you have the Node Package Manager installed:
  npm install -g coffee-script
  (Leave off the -g if you don't wish to install globally.)

  Execute a script:
  coffee /path/to/script.coffee

  Compile a script:
  coffee -c /path/to/script.coffee

  For documentation, usage, and examples, see:
  http://coffeescript.org/

  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 IRC,
  or on webchat.freenode.net.

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

  All contributors are listed here:
  http://github.com/jashkenas/coffee-script/contributors