发布于 2015-05-28 00:19:56 | 161 次阅读 | 评论: 0 | 来源: 网友投递
这里有新鲜出炉的CoffeeScript 中文手册,程序狗速度看过来!
CoffeeScript
CoffeeScript是一套JavaScript的转译语言,创建者 Jeremy Ashkenas 戏称它是- JavaScript 的不那么铺张的小兄弟。因为 CoffeeScript 会将类似 Ruby 语法的代码编译成 JavaScript,而且大部分结构都相似,但不同的是 CoffeeScript 拥有更严格的语法。
CoffeeScript 1.9.3 发布,此版本主要有以下更新:
Bugfix for interpolation in the first key of an object literal in an implicit call.
Fixed broken error messages in the REPL, as well as a few minor bugs with the REPL.
Fixed source mappings for tokens at the beginning of lines when compiling with the --bare option. This has the nice side effect of generating smaller source maps.
Slight formatting improvement of compiled block comments.
Better error messages for on, off, yes and no.
详细信息请查看更新日志。
此版本现已提供下载:
https://github.com/jashkenas/coffeescript/archive/1.9.3.zip
CoffeeScript是一套JavaScript的转译语言,创建者 Jeremy Ashkenas 戏称它是- JavaScript 的不那么铺张的小兄弟。因为 CoffeeScript 会将类似 Ruby 语法的代码编译成 JavaScript,而且大部分结构都相似,但不同的是 CoffeeScript 拥有更严格的语法。
先来看下对比代码(左为CoffeeScript):