Skip to content

Commit 4123978

Browse files
author
Ruan YiFeng
authored
Merge pull request ruanyf#632 from jim3ma/gh-pages
支持 gitbook,方便生成各种格式的电子书
2 parents 27784cd + f7c8e88 commit 4123978

File tree

4 files changed

+69
-0
lines changed

4 files changed

+69
-0
lines changed

SUMMARY.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Summary
2+
3+
* [0. 前言](README.md)
4+
* [1. ECMAScript 6简介](docs/intro.md)
5+
* [2. let 和 const 命令](docs/let.md)
6+
* [3. 变量的解构赋值](docs/destructuring.md)
7+
* [4. 字符串的扩展](docs/string.md)
8+
* [5. 正则的扩展](docs/regex.md)
9+
* [6. 数值的扩展](docs/number.md)
10+
* [7. 函数的扩展](docs/function.md)
11+
* [8. 数组的扩展](docs/array.md)
12+
* [9. 对象的扩展](docs/object.md)
13+
* [10. Symbol](docs/symbol.md)
14+
* [11. Set 和 Map 数据结构](docs/set-map.md)
15+
* [12. Proxy](docs/proxy.md)
16+
* [13. Reflect](docs/reflect.md)
17+
* [14. Promise 对象](docs/promise.md)
18+
* [15. Iterator 和 for...of 循环](docs/iterator.md)
19+
* [16. Generator 函数的语法](docs/generator.md)
20+
* [17. Generator 函数的异步应用](docs/generator-async.md)
21+
* [18. async 函数](docs/async.md)
22+
* [19. Class 的基本语法](docs/class.md)
23+
* [20. Class 的继承](docs/class-extends.md)
24+
* [21. Decorator](docs/decorator.md)
25+
* [22. Module 的语法](docs/module.md)
26+
* [23. Module 的加载实现](docs/module-loader.md)
27+
* [24. 编程风格](docs/style.md)
28+
* [25. 读懂规格](docs/spec.md)
29+
* [26. ArrayBuffer](docs/arraybuffer.md)
30+
* [27. 最新提案](docs/proposals.md)
31+
* [28. 参考链接](docs/reference.md)

book.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"author": "阮一峰",
3+
"description": "《ECMAScript 6 入门》是一本开源的 JavaScript 语言教程,全面介绍 ECMAScript 6 新引入的语法特性。",
4+
"extension": null,
5+
"generator": "site",
6+
"isbn": "9787121324758",
7+
"links": {
8+
"sharing": {
9+
"all": null,
10+
"facebook": null,
11+
"google": null,
12+
"twitter": null,
13+
"weibo": null
14+
},
15+
"sidebar": {
16+
"阮一峰的个人网站": "http://www.ruanyifeng.com/blog/"
17+
}
18+
},
19+
"output": null,
20+
"pdf": {
21+
"fontSize": 12,
22+
"footerTemplate": null,
23+
"headerTemplate": null,
24+
"margin": {
25+
"bottom": 36,
26+
"left": 62,
27+
"right": 62,
28+
"top": 36
29+
},
30+
"pageNumbers": false,
31+
"paperSize": "a4"
32+
},
33+
"plugins": [],
34+
"title": "ECMAScript 6 入门",
35+
"variables": {}
36+
}

cover.jpg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
images/cover-3rd.jpg

cover_small.jpg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
images/cover_thumbnail_3rd.jpg

0 commit comments

Comments
 (0)