多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[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实现文件 ~~~