[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
- 框架流程
- 框架示例
- 框架更新
- 基础原理
- 框架总结