-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
87 lines (82 loc) · 2.96 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<title>Mongoose Plugins Search</title>
<link rel="stylesheet" href="./public/style.css">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:400,700">
<style>
a, a:visited {
color: #800;
}
</style>
<script type="text/javascript">
var xhr = new XMLHttpRequest();
xhr.open('POST', 'https://g0a3nbw0xa.execute-api.us-east-1.amazonaws.com/prod/track', true);
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.onreadystatechange = function() {};
xhr.send(JSON.stringify({
path: window.location.pathname,
hostname: window.location.hostname,
hash: window.location.hash
}));
</script>
</head>
<body>
<div id="wrap">
<div>
<div id="header">
<h1>
<a href="http://mongoosejs.com">
<span class="mongoose">
mongoose
</span>
</a>
</h1>
<h2 id="plugins-subheader">
plugins search
</h2>
<div>
<input id="term" placeholder="Search">
</div>
<ul id="result">
<div id="addyourown">
<p>
Want to show off your <a href="http://mongoosejs.com/docs/plugins.html">plugin</a> here?
Publish it to <a href="http://www.npmjs.com">npm</a> and add "mongoose" as a <a href="https://docs.npmjs.com/files/package.json#keywords">keyword</a>.
</p>
<p>
Check out our officially supported plugins:
<div>
► <a href="/plugins/autopopulate">mongoose-autopopulate</a>
</div>
<div>
► <a href="/plugins/lean-virtuals">mongoose-lean-virtuals</a>
</div>
<div>
► <a href="/plugins/int32">mongoose-int32</a>
</div>
<div>
► <a href="/plugins/double">@mongoosejs/double</a>
</div>
<div>
► <a href="/plugins/update-versioning">mongoose-update-versioning</a>
</div>
<div>
► <a href="/plugins/lean-getters">mongoose-lean-getters</a>
</div>
</p>
<p class="improve">
<a href="https://github.com/vkarpov15/mongooseplugins">
improve this site
</a>
</p>
<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CK7DT537&placement=mongoosejsio" id="_carbonads_js"></script>
</div>
</ul>
</div>
</div>
</div>
<script type="text/javascript" src="./public/main.js"></script>
</body>
</html>