Till Schneidereit (2014-04-29T09:17:53.000Z)
On Tue, Apr 29, 2014 at 10:38 AM, Paulo Matos <paulo at matos-sorge.com> wrote:

> Thanks. I am new to the list so this might be a recurrent question but is
> there any working prototype implementation of ES6 that people can
> experiment language features with?
>

There isn't a complete implementation, no. To some extent because parts of
the spec aren't yet stable enough, but mostly because implementing all new
features is a huge amount of work.

Substantial parts of the spec are, however, implemented in various engines.
A good overview of the current state can be seen here:
http://kangax.github.io/es5-compat-table/es6/

Additionally, there are a few transpilers that transform ES6 code (again,
not with all features supported) to ES5 as supported in pretty much all
browsers nowadays. Traceur, one of those, is in the table I linked to above.


hth,
till
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20140429/9978b2f8/attachment-0001.html>
domenic at domenicdenicola.com (2014-05-08T15:07:55.323Z)
There isn't a complete implementation, no. To some extent because parts of
the spec aren't yet stable enough, but mostly because implementing all new
features is a huge amount of work.

Substantial parts of the spec are, however, implemented in various engines.
A good overview of the current state can be seen here:
http://kangax.github.io/es5-compat-table/es6/

Additionally, there are a few transpilers that transform ES6 code (again,
not with all features supported) to ES5 as supported in pretty much all
browsers nowadays. Traceur, one of those, is in the table I linked to above.