2018-04-28 22:03:21 -04:00
|
|
|
|
```
|
2018-04-28 21:57:15 -04:00
|
|
|
|
@@@@@@@ @@@@ @@@@@
|
|
|
|
|
@@@@@@@@@@ @@@ @@@ {
|
|
|
|
|
@@@@ @@ @@@ @@@ } } {
|
|
|
|
|
@@@@ @@@@@@@ @@@ @@@ @@@@@@ @@@@@@ { { } }
|
|
|
|
|
@@@@ @@@ @@ @@@@@ @@@@@@ @@@ @@ @@@@ @@ } }{ {
|
|
|
|
|
@@@@ @@@@ @@ @@@ @@@ @@@ @@@ @@@ @@@ { }{ } }
|
|
|
|
|
@@@@ @@@@ @@ @@@ @@@ @@@@@@@@ @@@@@@@@ { }{ }{ { }
|
|
|
|
|
@@@@@ @@@@ @@ @@@ @@@ @@@ @@@ { { } { } { } }
|
|
|
|
|
@@@@@@@@@@ @@@@@@@@ @@@ @@@ @@@@@@@@ @@@@@@@@ { } { } { }
|
|
|
|
|
@@@@@ @@@ @@@ @@@@@ @@@@@ @@@@@@ { } { } @@@@@@@
|
|
|
|
|
@@@ @@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
|
|
|
@@@@@@ @@@ @@@ @@ @@@@@@@@@@@@@@@@@@@@@@@@@@
|
|
|
|
|
@@@@ @@ @@@ @@@@ @@ @@@@@@@@@@@@@@@@@@@@@@@@
|
|
|
|
|
@@@@ @@@ @@ @@@@ @@@ @@@@@@@@@@@@@@@@@@@@@
|
|
|
|
|
@@@@@ @@@@@ @@ @@ @@@ @@@@@@@ @@@@@ @@@ @@@@@@@@@@@@@@@@@@
|
|
|
|
|
@@@@@ @@@ @@@ @@@@@@@@ @@@@ @@@@ @@@@@@@ @@@ @@@@@@@@@@@@@@@@
|
|
|
|
|
@@@@@ @@@ @@@@ @@@@ @@@ @@@ @@@ @@@@@@@@@@@@@@
|
|
|
|
|
@@@@@ @@@@ @@@@ @@@@ @@@@ @@@@ @@@@ @@@@
|
|
|
|
|
@@@ @@@@ @@@ @@@@ @@@@ @@@ @@@@ @@@@
|
|
|
|
|
@@@ @@@@ @@@@ @@@@ @@@@ @@@@ @@@@ @@@@
|
|
|
|
|
@@@@@@@@@ @@@@@@ @@@@ @@@@ @@@@@@@@@ @@@@
|
|
|
|
|
@@@ @@@@
|
|
|
|
|
@@@
|
|
|
|
|
@@@
|
2018-04-28 22:03:21 -04:00
|
|
|
|
```
|
2014-02-28 01:19:04 -05:00
|
|
|
|
|
|
|
|
|
CoffeeScript is a little language that compiles into JavaScript.
|
|
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
2017-05-14 14:12:50 -04:00
|
|
|
|
Once you have Node.js installed:
|
2014-02-28 01:19:04 -05:00
|
|
|
|
|
|
|
|
|
```shell
|
2018-04-28 21:57:15 -04:00
|
|
|
|
# Install locally for a project:
|
|
|
|
|
npm install --save-dev coffeescript
|
|
|
|
|
|
|
|
|
|
# Install globally to execute .coffee files anywhere:
|
2017-05-14 14:12:50 -04:00
|
|
|
|
npm install --global coffeescript
|
2014-02-28 01:19:04 -05:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Getting Started
|
|
|
|
|
|
|
|
|
|
Execute a script:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
coffee /path/to/script.coffee
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Compile a script:
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
coffee -c /path/to/script.coffee
|
|
|
|
|
```
|
|
|
|
|
|
2018-05-22 01:14:34 -04:00
|
|
|
|
For documentation, usage, and examples, see: https://coffeescript.org/
|
2014-02-28 01:19:04 -05:00
|
|
|
|
|
2017-04-17 22:43:10 -04:00
|
|
|
|
To suggest a feature or report a bug: https://github.com/jashkenas/coffeescript/issues
|
2014-02-28 01:19:04 -05:00
|
|
|
|
|
2017-02-18 02:47:02 -05:00
|
|
|
|
If you’d like to chat, drop by #coffeescript on Freenode IRC.
|
2014-02-28 01:19:04 -05:00
|
|
|
|
|
2014-05-08 15:07:42 -04:00
|
|
|
|
The source repository: https://github.com/jashkenas/coffeescript.git
|
2014-02-28 01:19:04 -05:00
|
|
|
|
|
2018-05-22 01:14:34 -04:00
|
|
|
|
Changelog: https://coffeescript.org/#changelog
|
2015-02-21 13:59:35 -05:00
|
|
|
|
|
2017-04-17 22:43:10 -04:00
|
|
|
|
Our lovely and talented contributors are listed here: https://github.com/jashkenas/coffeescript/contributors
|