CoffeeScript 1.4.0釋出

jieforest發表於2012-10-26
CoffeeScript. 1.4.0釋出。CoffeeScript是一種程式語言,它編寫的程式碼可以編譯成JavaScript。CoffeeScript需要Node.js的支援,這一切與微軟新推出的TypeScript很相似。

要安裝CoffeeScript,需要先安裝Node.js,然後使用Node.js的包管理器npm安裝CoffeeScript:
npm install -g coffee-script

執行CoffeeScript指令碼:
coffee /path/to/script.coffee

編譯CoffeeScript指令碼:
coffee -c /path/to/script.coffee

檢視CoffeeScript的官方文件,見:http://coffeescript.org/

CoffeeScript原始碼主頁:https://github.com/jashkenas/coffee-script

CoffeeScript. 1.4.0在程式碼除錯方面有很大的增強,簡化了除錯工作。

CoffeeScript. 1.4.0版的主要變化:

1. The CoffeeScript. compiler now strips Microsoft's UTF-8 BOM if it exists, allowing you to compile BOM-borked source files.

2. Fix Node/compiler deprecation warnings by removing registerExtension, and moving from path.exists to fs.exists.

3. Small tweaks to splat compilation, backticks, slicing, and the error for duplicate keys in object literals.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/301743/viewspace-747273/,如需轉載,請註明出處,否則將追究法律責任。

相關文章