-
Notifications
You must be signed in to change notification settings - Fork 103
/
index.html
62 lines (52 loc) · 1.84 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>diffDOM</title>
</head>
<body>
<h1>diffDOM</h1>
<p>
This library allows the abstraction of differences between DOM
elements as a "diff" object, representing the sequence of
modifications that must be applied to one element in order to turn
it into the other element. This diff is non-destructive, meaning
that relocations of DOM nodes are preferred over remove-insert
operations.
</p>
<p>
This project is licensed under the LGPL v. 3. For details see
<a href="LICENSE.txt">the license</a>.
</p>
<h2>Tests</h2>
<p>
Automatic tests are run using jest. There are also some browser
based tests you can look at:
</p>
<p>
There is a
<a href="browserTests/random.html">test of random elements</a>.
</p>
<p>
There is also a
<a href="browserTests/random-unlimited.html"
>version of the random tests that reloads if no errors have been
found</a
>, mainly useful for finding errors.
</p>
<p>
The
<a href="browserTests/site-integration.html"
>site integration test</a
>, contributed by user unbug, allows for testing for speed on a
170kb site real-world-like site where it is integrated with jQuery.
</p>
<h2>Demo</h2>
<p>Check out the <a href="demo/index.html">interactive demo</a>!</p>
<h2>Usage/Download</h2>
<p>
Usage instructions and download available
<a href="https://github.com/johanneswilm/diffDOM/">on github</a>.
</p>
</body>
</html>