CoffeeScript 1.9 Released
Written by Alex Denham   
Monday, 09 February 2015

The latest version of CoffeeScript has been released with more robust parsing and support for ES6 generators.


 

CoffeeScript code compiles one-to-one into JavaScript and this is its claimed big advantage.

The official CoffeeScript website (http://coffeescript.org/) says the language aims to expose the good parts of JavaScript in a simple way. You can use any existing JavaScript library seamlessly from CoffeeScript, and the compiled output remains readable, passes through JavaScript Lint without warnings, will work in every JavaScript runtime, and tends to run as fast or faster than the equivalent handwritten JavaScript.

However with the soon to be announced next version of JavaScript ES6 many of the things that CoffeeScript supplied are going to be standard in JavaScript. Many think that the time has come for this improved scripting language - but  not in a good way. Perhaps making the move back to JavaScript easier is indeed its best feature for the future.

The support for ES6 generators in CoffeeScript 1.9 is welcome news, as this is a feature the developers have been keen to add.

A generator is simply a function that yields.

An example of a generator in use in CoffeeScript is:

perfectSquares = ->
num = 0
loop
 num += 1
 yield num * num
return
window.ps or= perfectSquares()

Parsing has also been made more robust, and error messages have been improved for strings and regexes — especially with respect to interpolation.

The developers have also changed the strategy for the generation of internal compiler variable names. The release notes say that that this means that ‘@example’ function parameters are no longer available as naked ‘example’ variables within the function body.

The final main change to this release is to the REPL. This is now compatible with the latest versions of Node and Io.js.

 

Banner


Rust's Rapid Rise on TIOBE Index
10/07/2024

Rust is making spectacular progress up the TIOBE index and JavaScript is also on the up and experiencing a personal best. Kotlin is maintaining its inclusion in the top 20 and the gap at the very top  [ ... ]



Udacity Offers More AWS Scholarships
28/06/2024

Udacity has announced it is accepting applications for the next wave of 1,000 AWS AI & ML Scholarships. Any student over the age of 16 who self-identifies as under-served or under-represented in t [ ... ]


More News

 

kotlin book

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Monday, 09 February 2015 )