CoffeeScript is a little language that compiles into JavaScript. Underneath all those awkward 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. The golden rule of CoffeeScript is: "It's just JavaScript". The code compiles one-to-one into the equivalent JS, and there is no interpretation at runtime. You can use any existing JavaScript library seamlessly from CoffeeScript (and vice-versa). The compiled output is readable and pretty-printed, passes through JavaScript Lint without warnings, will work in every JavaScript implementation, and tends to run as fast or faster than the equivalent handwritten JavaScript. Feedback and OK jasper@
41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
@comment $OpenBSD: PLIST,v 1.1.1.1 2011/12/19 22:21:47 jeremy Exp $
|
|
bin/cake
|
|
bin/coffee
|
|
lib/coffee-script/
|
|
lib/coffee-script/LICENSE
|
|
lib/coffee-script/README
|
|
lib/coffee-script/bin/
|
|
lib/coffee-script/bin/cake
|
|
lib/coffee-script/bin/coffee
|
|
lib/coffee-script/lib/
|
|
lib/coffee-script/lib/coffee-script/
|
|
lib/coffee-script/lib/coffee-script/browser.js
|
|
lib/coffee-script/lib/coffee-script/cake.js
|
|
lib/coffee-script/lib/coffee-script/coffee-script.js
|
|
lib/coffee-script/lib/coffee-script/command.js
|
|
lib/coffee-script/lib/coffee-script/grammar.js
|
|
lib/coffee-script/lib/coffee-script/helpers.js
|
|
lib/coffee-script/lib/coffee-script/index.js
|
|
lib/coffee-script/lib/coffee-script/lexer.js
|
|
lib/coffee-script/lib/coffee-script/nodes.js
|
|
lib/coffee-script/lib/coffee-script/optparse.js
|
|
lib/coffee-script/lib/coffee-script/parser.js
|
|
lib/coffee-script/lib/coffee-script/repl.js
|
|
lib/coffee-script/lib/coffee-script/rewriter.js
|
|
lib/coffee-script/lib/coffee-script/scope.js
|
|
lib/coffee-script/package.json
|
|
lib/coffee-script/src/
|
|
lib/coffee-script/src/browser.coffee
|
|
lib/coffee-script/src/cake.coffee
|
|
lib/coffee-script/src/coffee-script.coffee
|
|
lib/coffee-script/src/command.coffee
|
|
lib/coffee-script/src/grammar.coffee
|
|
lib/coffee-script/src/helpers.coffee
|
|
lib/coffee-script/src/index.coffee
|
|
lib/coffee-script/src/lexer.coffee
|
|
lib/coffee-script/src/nodes.coffee
|
|
lib/coffee-script/src/optparse.coffee
|
|
lib/coffee-script/src/repl.coffee
|
|
lib/coffee-script/src/rewriter.coffee
|
|
lib/coffee-script/src/scope.coffee
|