[TOC]
* * * * *
# 1 源代碼目錄
~~~
inferno-master\src\ ;源代碼實現目錄
component\ ;component模塊實現目錄
core\ ;inferno模塊實現目錄
createElement\ ;createelement模塊實現目錄
DOM\ ;dom模塊實現目錄
router\ ;router模塊實現目錄
server\ ;server模塊實現目錄
testUtils\ ;testutils模塊實現目錄
~~~
# 2 源代碼實現文件
> 源代碼目錄中包含各個模塊的主要實現
> 各個模塊包含測試目錄與實現文件
# 3 模塊實現目錄
~~~
;以component模塊為例
inferno-master\src\component\
__tests__\ ;component測試目錄
index.js ;component實現文件
~~~
- 框架概述
- 框架目錄
- 總目錄(inferno-master)
- 配置目錄(config)
- 示例目錄(examples)
- 包目錄(packages)
- 源代碼目錄(src)
- 工具目錄(tools)
- 其他文件
- 框架結構
- (0)依賴關系
- (1)Inferno模塊
- (2)InfernoDOM模塊
- (3)InfernoServer模塊
- (4)InfernoComponent模塊
- (5)InfernoTestUtils模塊
- (6)InfernoCreateElement模塊
- (7)InfernoRouter模塊
- 框架實現
- (1)Router
- (2)Redux
- (3)Component
- (4)CreateElement
- (5)Core(Vnode)
- (6)Dom(Render)
- (7)Server
- (8)TestUtils
- (9)Utils
- 框架流程
- 框架示例
- 框架更新
- 基礎原理
- 框架總結