CoffeeScript is a little language that compiles into JavaScript. Underneath all of those embarrassing braces and semicolons, JavaScript has always had a gorgeous object model at its heart. CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way.
CoffeeScript can be used in any JavaScript environment. Included in a web page, it supports <script type="text/coffeescript"> tags; with node.js it can compile code on the command line; and it is also available as a Ruby gem.
The documentation and downloads can be found on the CoffeeScript website.
Popular questions
- Defining global variables in CoffeeScript
- Removing an element from an array without knowing the index in advance
- "document is not defined" when using with jQuery