-
Notifications
You must be signed in to change notification settings - Fork 2
/
parts.html
34 lines (31 loc) · 1.18 KB
/
parts.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
<!DOCTYPE html>
<html>
<head>
<title>Toram DB</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="Steven Rémot" />
</head>
<body>
<p>The sample app contains three additional parts beyond Amber itself:</p>
<ul style="width: 40ex">
<li>The elements in <code>index.html</code>
<code><body></code> tag.</li>
<li><code>amber-contrib-jquery</code> module,
providing jQuery and a wrapper over it.</li>
<li><code>amber-contrib-web</code> module,
providing <code>Web</code> package
that allows for DOM manipulation
and is inspired by Seaside.</li>
<li><code>domite</code> module,
providing Amber-native DOM wrapper.</li>
<li><code>silk</code> module,
providing <code>Silk</code> package
that allows for DOM manipulation,
is meant as alternative to <code>Web</code>
and is inspired by stream metaphor and mochikit.</li>
</ul>
<p>Additionally, module <code>amber-compat-es2015</code>
is included by default. This polyfills JS Promise for non-modern
browsers / old node.js.</p>
</body>
</html>