├── LICENSE ├── README.md ├── en-US.md └── zh-Hans.md /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 lenville 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ES6-Resources 2 | 3 | [中文版](https://github.com/lenville/es6-resources/blob/master/zh-Hans.md) 4 | 5 | [English Version](https://github.com/lenville/es6-resources/blob/master/en-US.md) 6 | 7 | ##References 8 | > [1] Addy Osmani. ECMAScript 6 Tools. https://github.com/addyosmani/es6-tools, Dec 20, 2013 - now 9 | > 10 | > [2] Addy Osmani. Tracking ECMAScript 6 Support. http://addyosmani.com/blog/tracking-es6-support/, August 17, 2013 11 | > 12 | > [3] Kennyluck. ECMAScript6规范导读. https://www.parleys.com/talk/ecmascript6--规-范-导-读-4, July 28, 2014 13 | > 14 | > [4] Sayanee Basu. Use ECMAScript 6 Today. https://code.tutsplus.com/articles/use-ecmascript-6-today--net-31582, 7 May, 2013 15 | -------------------------------------------------------------------------------- /en-US.md: -------------------------------------------------------------------------------- 1 | ## Support Tracker 2 | * [ECMAScript Compatibility Table](http://kangax.github.io/compat-table/es6/) by [kangax](kangax) 3 | ![ecmascript-6-compatibility-table](https://cloud.githubusercontent.com/assets/1564923/6500314/211bbcf4-c345-11e4-89b2-a7d6f5167a41.png) 4 | * [Official Harmony Specification Drafts](http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts) 5 | * [ECMAScript 6 support in Mozilla](https://developer.mozilla.org/en-US/docs/Web/JavaScript/New_in_JavaScript/ECMAScript_6_support_in_Mozilla) by [Mozilla](https://developer.mozilla.org/) 6 | * [ECMAScript 6 support in V8](https://code.google.com/p/v8/issues/list?q=label:Harmony) by [Google V8 Team](https://code.google.com/p/v8/) 7 | * [Web Platform Features](https://www.chromestatus.com/features#es6) by [Chromium Team](http://www.chromium.org/developers/web-platform-status) 8 | 9 | ## [Addy's ECMAScript 6 Tools](https://github.com/addyosmani/es6-tools) 10 | * [Transpilers](https://github.com/addyosmani/es6-tools#transpilers) 11 | * [Build-time transpilation](https://github.com/addyosmani/es6-tools#build-time-transpilation) 12 | * [Grunt Tasks](https://github.com/addyosmani/es6-tools#grunt-tasks) 13 | * [Gulp Plugins](https://github.com/addyosmani/es6-tools#gulp-plugins) 14 | * [Broccoli Plugins](https://github.com/addyosmani/es6-tools#broccoli-plugins) 15 | * [Brunch Plugins](https://github.com/addyosmani/es6-tools#brunch-plugins) 16 | * [Webpack plugins](https://github.com/addyosmani/es6-tools#webpack-plugins) 17 | * [Duo plugins](https://github.com/addyosmani/es6-tools#duo-plugins) 18 | * [Connect plugins](https://github.com/addyosmani/es6-tools#connect-plugins) 19 | * [Gobble plugins](https://github.com/addyosmani/es6-tools#gobble-plugins) 20 | * [Jade plugins](https://github.com/addyosmani/es6-tools#jade-plugins) 21 | * [Jest plugins](https://github.com/addyosmani/es6-tools#jest-plugins) 22 | * [Karma plugins](https://github.com/addyosmani/es6-tools#karma-plugins) 23 | * [Sprockets plugins](https://github.com/addyosmani/es6-tools#sprockets-plugins) 24 | * [Module Loaders](https://github.com/addyosmani/es6-tools#module-loaders) 25 | * [Boilerplates](https://github.com/addyosmani/es6-tools#boilerplates) 26 | * [Code generation](https://github.com/addyosmani/es6-tools#code-generation) 27 | * [Polyfills](https://github.com/addyosmani/es6-tools#polyfills) 28 | * [Editors](https://github.com/addyosmani/es6-tools#editors) 29 | * [Parsers](https://github.com/addyosmani/es6-tools#parsers) 30 | * [Other](https://github.com/addyosmani/es6-tools#other) 31 | 32 | ## Conf Videos 33 | 34 | | Rate | Title | Author | URL | 35 | | :--: | :---: | :----: | :-: | 36 | | ★★★★★ | ES6 and ES7 the future of Javascript | Brendan Eich | [Youtube](https://www.youtube.com/watch?v=6AytbSdWBKg&t=788) | 37 | | ★★★★☆ | ES6: JavaScript, grown up | Jack Franklin | [Youtube](https://www.youtube.com/watch?v=mPq5S27qWW8&t=106) | 38 | | ★★★☆☆ | [Using ECMAScript 6 today](https://speakerdeck.com/rauschma/using-ecmascript-6-today) | Axel Rauschmayer | Youtube: [I](https://www.youtube.com/watch?v=Fg3bEZIcnUw) /[ II](https://www.youtube.com/watch?v=Vhhq1WpzsnM) | 39 | 40 | ## Required Reading 41 | 42 | | Rate | Title | Author | URL | 43 | | :--: | :---: | :----: | :-: | 44 | | ★★★★☆ | Overview of ECMAScript 6 features | lukehoban | [Github](https://github.com/lukehoban/es6features)| 45 | | ★★★★☆ |Use ECMAScript 6 Today|Sayanee Basu|[Tuts+](https://code.tutsplus.com/articles/use-ecmascript-6-today--net-31582)| 46 | 47 | ## Other feeds 48 | 49 | | Rate | Title | Author | URL | 50 | | :--: | :---: | :----: | :-: | 51 | | Pending | ES6 on io.js | io.js | [iojs.org](https://iojs.org/en/es6.html) | 52 | | Pending | React & ES6 Today | Robert Prehn | [revelry.co](http://revelry.co/development/2015/03/02/es6-and-react/) | 53 | | Pending | ECMAScript 6 – New language improvements in JavaScript | Ravi Kiran | [dotnetcurry.com](http://www.dotnetcurry.com/showarticle.aspx?ID=1090) | 54 | | Pending | Building with AngularJS, JSPM, Babel, Gulp and ES6 | Jecelyn | [iconnect360.com](http://engineering.iconnect360.com/angularjs/) | 55 | -------------------------------------------------------------------------------- /zh-Hans.md: -------------------------------------------------------------------------------- 1 | ## 兼容性速查 2 | 3 | **如果你使用Chrome作为实验环境, 请开启 Experimental JavaScript 的功能** 4 | ![](https://cdn.tutsplus.com/net/uploads/2013/05/es6-compatibility.png) 5 | 6 | 7 | 1. [ECMAScript 兼容表格](http://kangax.github.io/compat-table/es6/) by [kangax](kangax) 8 | ![ecmascript-6-compatibility-table](https://cloud.githubusercontent.com/assets/1564923/6500314/211bbcf4-c345-11e4-89b2-a7d6f5167a41.png) 9 | * [Harmony 官方说明草案](http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts) 10 | * [Mozilla 的 ES6 支持](https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/ECMAScript_6_support_in_Mozilla) by [Mozilla](https://developer.mozilla.org/zh-CN/) 11 | * [V8 的 ES6 支持 ](https://code.google.com/p/v8/issues/list?q=label:Harmony) by [Google V8 Team](https://code.google.com/p/v8/) 12 | * [Web 平台特性](https://www.chromestatus.com/features#es6) by [Chromium Team](http://www.chromium.org/developers/web-platform-status) 13 | * 注:内大部分地区无法正常使用,可以翻墙或代理 https://www.chromestatus.com/features.json 到 http://lenville.u.qiniudn.com/features.json 即可正常使用 14 | 15 | ## [Addy 的 ECMAScript 6 工具集](https://github.com/addyosmani/es6-tools) 16 | * [Transpilers](https://github.com/addyosmani/es6-tools#transpilers) : Transpiler 是将一种语言的源码转换为另一种语言的源码的编译器, 又称 [Source-to-source Compiler](http://en.wikipedia.org/wiki/Source-to-source_compiler), 这里有一个关于 Transpiler 如何翻译命名的 [讨论](https://github.com/lenville/es6-resources/issues/1) 17 | * [Build-time transpilation](https://github.com/addyosmani/es6-tools#build-time-transpilation) 18 | * [Grunt Tasks](https://github.com/addyosmani/es6-tools#grunt-tasks) 19 | * [Gulp Plugins](https://github.com/addyosmani/es6-tools#gulp-plugins) 20 | * [Broccoli Plugins](https://github.com/addyosmani/es6-tools#broccoli-plugins) 21 | * [Brunch Plugins](https://github.com/addyosmani/es6-tools#brunch-plugins) 22 | * [Webpack plugins](https://github.com/addyosmani/es6-tools#webpack-plugins) 23 | * [Duo plugins](https://github.com/addyosmani/es6-tools#duo-plugins) 24 | * [Connect plugins](https://github.com/addyosmani/es6-tools#connect-plugins) 25 | * [Gobble plugins](https://github.com/addyosmani/es6-tools#gobble-plugins) 26 | * [Jade plugins](https://github.com/addyosmani/es6-tools#jade-plugins) 27 | * [Jest plugins](https://github.com/addyosmani/es6-tools#jest-plugins) 28 | * [Karma plugins](https://github.com/addyosmani/es6-tools#karma-plugins) 29 | * [Sprockets plugins](https://github.com/addyosmani/es6-tools#sprockets-plugins) 30 | * [Module Loaders](https://github.com/addyosmani/es6-tools#module-loaders) 31 | * [Boilerplates](https://github.com/addyosmani/es6-tools#boilerplates) 32 | * [Code generation](https://github.com/addyosmani/es6-tools#code-generation) 33 | * [Polyfills](https://github.com/addyosmani/es6-tools#polyfills) 34 | * [Editors](https://github.com/addyosmani/es6-tools#editors) 35 | * [Parsers](https://github.com/addyosmani/es6-tools#parsers) 36 | * [Other](https://github.com/addyosmani/es6-tools#other) 37 | 38 | ## 演讲集锦 39 | 40 | | 推荐等级 | 标题 | 作者 | 链接 | 41 | | :------: | :-: | :--: | :-: | 42 | | ★★★★★ | JavaScript 的未来 : ES6 和 ES7 (en-US) | Brendan Eich | [Youtube](https://www.youtube.com/watch?v=6AytbSdWBKg&t=788) | 43 | | ★★★★☆ | ES6: 茁壮成长的 JavaScript (en-US) | Jack Franklin |[Youtube](https://www.youtube.com/watch?v=mPq5S27qWW8&t=106) | 44 | | ★★★☆☆ | [现在就用 ECMAScript 6](https://speakerdeck.com/rauschma/using-ecmascript-6-today) (en-US) | Axel Rauschmayer | Youtube: [Part I](https://www.youtube.com/watch?v=Fg3bEZIcnUw) / [Part II](https://www.youtube.com/watch?v=Vhhq1WpzsnM) | 45 | 46 | ## 必读文章 & 文档 47 | 48 | | 推荐等级 | 标题 | 作者 | 链接 | 49 | | :----------: | :-: | :--: | :--: | 50 | | ★★★★★ |ECMAScript 6 入门| 阮一峰| [ruanyifeng.com](http://es6.ruanyifeng.com/) | 51 | | ★★★★☆ | ECMAScript 6 特性速览 | lukehoban | [Github](https://github.com/lenville/es6features) | 52 | | ★★★★☆ |现在就用 ECMAScript 6 (en-US) |Sayanee Basu|[Tuts+](https://code.tutsplus.com/articles/use-ecmascript-6-today--net-31582)| 53 | 54 | ## 得力工具 55 | | 推荐等级 | 标题 | 作者 | 链接 | 56 | | :------: | :-: | :--: | :-: | 57 | | ★★★★★ | ES6-Grammer | Kennyluck | [oupeng.com](http://dev.oupeng.com/wp-content/uploads/es6-grammar.html) | 58 | 59 | 60 | 61 | 其它资料(如果您觉得对您有帮助, 可以提交 PR 或 issue 提升他们的星级) 62 | 63 | | 推荐等级 | 标题 | 作者 | 链接 | 64 | | :------: | :-: | :--: | :-: | 65 | | 待评级 | ES6 on io.js (en-US) | io.js | [iojs.org](https://iojs.org/en/es6.html) | 66 | | 待评级 | React & ES6 Today (en-US) | Robert Prehn | [revelry.co](http://revelry.co/development/2015/03/02/es6-and-react/) | 67 | | 待评级 | ECMAScript 6 – New language improvements in JavaScript (en-US) | Ravi Kiran | [dotnetcurry.com](http://www.dotnetcurry.com/showarticle.aspx?ID=1090) | 68 | | 待评级 | Building with AngularJS, JSPM, Babel, Gulp and ES6 (en-US) | Jecelyn | [iconnect360.com](http://engineering.iconnect360.com/angularjs/) | 69 | | 待评级 | ECMAScript 6 草案裡的文法與 ES5 的差異 | Kennyluck | [w3.org](http://lists.w3.org/Archives/Public/public-html-ig-zh/2013Jan/0000)| 70 | --------------------------------------------------------------------------------