mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-14 09:17:55 -05:00
* Move analytics initialization into docs.coffee * Bump Bootstrap and CodeMirror versions * Update output * Merge CodeMirror styles * Update CodeMirror styles * Better flexbox layout for docs, including flex auto-sized sidebar and main column * Minor styling fixes for Edge * Fix scrollspy for new layout * Update output * Clicking on the CoffeeScript logo in the navbar should scroll to top; fix main column width on mobile * Update output * 2.3.0 changelog * Update operators section for ** * Update docs for ES2018 object rest/spread * Remove references to Node's experimental modules support * Move the README coffee cup to the right side, so our name isn't cut off on the NPM page; update README and CONTRIBUTING text * Update dependencies * Add compatibility note for async generators * Bump version to 2.3.0 and update output * Have CI test in Node 10 instead of 9 * Somehow this gets generated slightly differently in Node 10 * Fix #4042: Update broken link
65 lines
2.7 KiB
Markdown
65 lines
2.7 KiB
Markdown
@@@@@@@ @@@@ @@@@@
|
||
@@@@@@@@@@ @@@ @@@ {
|
||
@@@@ @@ @@@ @@@ } } {
|
||
@@@@ @@@@@@@ @@@ @@@ @@@@@@ @@@@@@ { { } }
|
||
@@@@ @@@ @@ @@@@@ @@@@@@ @@@ @@ @@@@ @@ } }{ {
|
||
@@@@ @@@@ @@ @@@ @@@ @@@ @@@ @@@ @@@ { }{ } }
|
||
@@@@ @@@@ @@ @@@ @@@ @@@@@@@@ @@@@@@@@ { }{ }{ { }
|
||
@@@@@ @@@@ @@ @@@ @@@ @@@ @@@ { { } { } { } }
|
||
@@@@@@@@@@ @@@@@@@@ @@@ @@@ @@@@@@@@ @@@@@@@@ { } { } { }
|
||
@@@@@ @@@ @@@ @@@@@ @@@@@ @@@@@@ { } { } @@@@@@@
|
||
@@@ @@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@
|
||
@@@@@@ @@@ @@@ @@ @@@@@@@@@@@@@@@@@@@@@@@@@@
|
||
@@@@ @@ @@@ @@@@ @@ @@@@@@@@@@@@@@@@@@@@@@@@
|
||
@@@@ @@@ @@ @@@@ @@@ @@@@@@@@@@@@@@@@@@@@@
|
||
@@@@@ @@@@@ @@ @@ @@@ @@@@@@@ @@@@@ @@@ @@@@@@@@@@@@@@@@@@
|
||
@@@@@ @@@ @@@ @@@@@@@@ @@@@ @@@@ @@@@@@@ @@@ @@@@@@@@@@@@@@@@
|
||
@@@@@ @@@ @@@@ @@@@ @@@ @@@ @@@ @@@@@@@@@@@@@@
|
||
@@@@@ @@@@ @@@@ @@@@ @@@@ @@@@ @@@@ @@@@
|
||
@@@ @@@@ @@@ @@@@ @@@@ @@@ @@@@ @@@@
|
||
@@@ @@@@ @@@@ @@@@ @@@@ @@@@ @@@@ @@@@
|
||
@@@@@@@@@ @@@@@@ @@@@ @@@@ @@@@@@@@@ @@@@
|
||
@@@ @@@@
|
||
@@@
|
||
@@@
|
||
|
||
CoffeeScript is a little language that compiles into JavaScript.
|
||
|
||
## Installation
|
||
|
||
Once you have Node.js installed:
|
||
|
||
```shell
|
||
# Install locally for a project:
|
||
npm install --save-dev coffeescript
|
||
|
||
# Install globally to execute .coffee files anywhere:
|
||
npm install --global coffeescript
|
||
```
|
||
|
||
## Getting Started
|
||
|
||
Execute a script:
|
||
|
||
```shell
|
||
coffee /path/to/script.coffee
|
||
```
|
||
|
||
Compile a script:
|
||
|
||
```shell
|
||
coffee -c /path/to/script.coffee
|
||
```
|
||
|
||
For documentation, usage, and examples, see: http://coffeescript.org/
|
||
|
||
To suggest a feature or report a bug: https://github.com/jashkenas/coffeescript/issues
|
||
|
||
If you’d like to chat, drop by #coffeescript on Freenode IRC.
|
||
|
||
The source repository: https://github.com/jashkenas/coffeescript.git
|
||
|
||
Changelog: http://coffeescript.org/#changelog
|
||
|
||
Our lovely and talented contributors are listed here: https://github.com/jashkenas/coffeescript/contributors
|