-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (55 loc) · 3.14 KB
/
index.html
File metadata and controls
63 lines (55 loc) · 3.14 KB
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 class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Mole.js</title>
<meta name="description" content="Catch the errors on your frontend application, the smart way.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="img/mole.png">
<link rel="stylesheet" href="css/normalize.min.css">
<link href='https://fonts.googleapis.com/css?family=Lora:700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,100' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]-->
</head>
<body>
<div class="wrap">
<div class="header">
<div class="logo"></div>
<h1>Mole.js</h1>
<p>Catch the errors on your frontend application, the smart way.</p>
<nav>
<ul>
<li><a href="https://github.com/molejs" title="Mole.js GitHub">View on GitHub</a></li>
<li><a href="/docs/" title="Documentation">Documentation</a></li>
</ul>
</nav>
</div>
<div class="content">
<div class="features">
<div class="feature">
<h2>Know why and not just what error happened</h2>
<p><b>Mole.js is focused on getting the data and the actions that led to an error rather than just catching the error</b>. That is why along with the error a list of state and action combinations are reported so you know the steps that made the error happen.</p>
</div>
<div class="feature">
<h2>Easy to integrate</h2>
<p>Reporting with Mole.js is as simple as using one of the builtin adapters (or create your own) and reporting with the <b>mole-reporter</b> library.</p>
</div>
<div class="feature">
<h2>Framework agnostic</h2>
<p>The reporter, dashboard and server for Mole.js are totally framework agnostic thanks to the use of adapters to act as a bridge between your app or framework and the reporter.</p>
</div>
<div class="feature">
<h2>Batteries included</h2>
<p>Mole.js comes already with a server to store the reports and a dashboard to browse and analyse them.</p>
</div>
</div>
</div>
<div class="footer">
<div class="authors">Made with <span class="heart">♥</span> by <a href="https://github.com/filiptc" title="Philip Thomas">filiptc</a> and <a href="https://github.com/mvader" title="Miguel Molina">mvader</a>.</div>
</div>
</div>
</body>
</html>