-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
71 lines (70 loc) · 3.19 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
63
64
65
66
67
68
69
70
71
<html><head><meta charset="utf-8" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="description" content="" />
<meta name="author" content="Maxim Sokhatsky" /><title>ACTIVE</title>
<link rel="stylesheet" href="https://n2o.dev/blank.css"/>
<link rel="stylesheet" href="https://n2o.dev/zima.css"/>
<link rel="shortcut icon" type="image/x-icon" href="https://n2o.dev/img/favicon.ico"/>
<link rel="apple-touch-icon" sizes="180x180" href="https://n2o.dev/img/apple-touch-icon.png"/>
<link rel="icon" type="image/png" sizes="32x32" href="https://n2o.dev/img/favicon-32x32.png"/>
<link rel="icon" type="image/png" sizes="16x16" href="https://n2o.dev/img/favicon-16x16.png"/>
<link rel="manifest" href="https://n2o.dev/img/site.webmanifest"/>
</head><body><nav>
<a href="https://n2o.dev">DEV</a>
<a href="https://active.n2o.dev" style="background:#ededed;">ACTIVE</a>
<div class="dropdown">
<a onclick="drop()" class="dropbtn">EN</a>
<div id="dropdown" class="dropdown-content">
<a href="https://n2o.dev/deps/active/man/ua/index.html">UA</a>
<a href="https://active.n2o.dev/">EN</a>
</div>
</div>
</nav><header>
<a href="https://github.com/synrc/active"><img src="https://openmoji.org/data/color/svg/267E.svg" /></a>
<h1>ACTIVE</h1>
</header><aside>
<article>
<section>
<h3>SYNOPSIS</h3>
<div>ACTIVE is a recompilation logic for Erlang application built on top of
the native file system listener <a href="https://fs.n2o.dev">FS</a>.
On Mac/Linux/Windows just include into your rebar.config:</div><br/>
<figure><code> $ mad get active</code></figure>
<br />
<div>
NOV 2021 © <a href="https://github.com/proger">proger</a> ISC<br />
VER 7.11 <a href="https://github.com/synrc/active/tree/6.1">6.1</a>
<a href="https://github.com/synrc/active/tree/4.11">4.11</a>
</div>
</section>
</article>
</aside><main>
<section>
<a name="intro"></a><h3>INTRO</h3>
<h4>One-level</h4>
<figure><code>
app(App,["ebin",Module|_]) -> load_ebin(App,Module);
app(App,["priv"|_]) -> compile(App);
app(App,["src"|_]) -> compile(App);
app(_,_)-> ok.
</code></figure>
<h4>Two-level</h4>
<figure><code>
otp(["deps",App|Rest]) -> app(App,Rest);
otp(["apps",App|Rest]) -> app(App,Rest);
otp([Some|Path]) -> app(top(),[Some|Path]);
otp(_) -> ok.
</code></figure>
</section>
<section>
<a name="plugin"></a><h3>CONTRIBUTORS</h3>
<div>
<ul><li><a href="https://github.com/5HT">5HT</a> — Namdak Tonpa</li>
<li><a href="https://github.com/proger">proger</a> — Vlad Ki</li>
<li><a href="https://github.com/pal-alex">pal-alex</a> — Oleksandr Palchikovsky</li>
</ul></div>
</section>
</main><footer>
Made with <span class="heart">❤</span> to N2O
</footer>
<script>function drop(){document.getElementById("dropdown").classList.toggle("show");}</script>
</body></html>