Skip to content

Commit

Permalink
[code:snabbdom] add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
creeperyang committed Jun 15, 2017
1 parent 6717c50 commit 4077b52
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions codes/snabbdom/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# snabbdom 源码解析

snabbdom 的 ES6 版本(有细微不同点),核心代码有详细注释,主要用于理解 snabbdom 。

代码结构:

```bash
src
├── domApi.js # dom api,主要是各种 DOM 操作的包装,快速浏览即可。
├── export.js # export,决定暴露什么接口给调用者,可忽略。
├── h.js # `h()`帮助函数,很简单。
├── index.js # 核心代码,Virtual DOM 的 diff 实现,从 Virtual DOM 构建 DOM 等等。
├── modules # 各个模块,主要负责属性处理。
│ ├── class.js
│ ├── props.js
│ └── style.js
├── utils.js # util 函数。
└── vnode.js # vnode 定义和一些相关函数。
```

看 snabbdom 的实际例子:

```bash
npm i && npm run start
```

0 comments on commit 4077b52

Please sign in to comment.