-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
108 lines (106 loc) · 4.85 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="stylesheet.css">
<title>waterline.js</title>
</head>
<body>
<div id="waterline-homepage">
<div class="banner">
<div class="container">
<a href="https://github.com/balderdashy/waterline">
<img class="logo" src="images/waterline-logo.png"/>
</a>
<h1>waterline</h1>
<h5>an adapter-based ORM for node.js</h5>
</div>
</div>
<hr/>
<div class="about">
<div class="container">
<h3>Waterline is a new kind of storage and retrieval engine.</h3>
<div class="two-column clearfix">
<div class="column left-column">
<p>It provides a uniform API for accessing stuff from different kinds of databases, protocols, and 3rd party APIs. That means you write the same code to get and store things like users, whether they live in Redis, mySQL, LDAP, MongoDB, or Postgres.</p>
</div>
<div class="column right-column">
<p>Waterline strives to inherit the best parts of ORMs like ActiveRecord, Hibernate, and Mongoose, but with a fresh perspective and emphasis on modularity, testability, and consistency across adapters.</p>
</div>
</div>
</div>
</div>
<div class="links">
<hr/>
<div class="container">
<div class="three-column clearfix">
<div class="column left-column">
<a target="_blank" href="https://github.com/balderdashy/waterline">
<div class="link-container">
<img class="link-icon" src="images/waterline-github-icon.png"/>
<h3>repo</h3>
</div>
</a>
</div>
<div class="column middle-column">
<a target="_blank" href="http://sailsjs.com/documentation/concepts/models-and-orm">
<div class="link-container">
<img class="link-icon" src="images/waterline-docs-icon.png"/>
<h3>docs</h3>
</div>
</a>
</div>
<div class="column right-column">
<a target="_blank" href="https://www.npmjs.com/package/waterline">
<div class="link-container">
<img class="link-icon" src="images/waterline-npm-icon.png"/>
<h3>npm</h3>
</div>
</a>
</div>
</div>
</div>
<!-- <hr/> -->
</div>
<div class="footer">
<div class="container">
<div class="bottom-waves">
<img class="waves-left" alt="Cartoon waves" src="images/image_wavesBottomLeft.png"/>
<img class="waves-right" alt="A cartoon squid tentacle popping out of some waves; above is a speech bubble with a heart inside" src="images/image_wavesBottomRight.png"/>
</div>
<!-- <img class="tentacle" src="images/tentacle.png"/> -->
<div class="built">
<h2><img alt="A heart icon" src="images/icon_heart.png"/>Built with Love</h1>
<p>Waterline was developed by <a target="blank" href="https://twitter.com/mikermcneil">Mike McNeil</a> and the <a target="_blank" href="http://sailsjs.com">Sails.js</a> core team with the support of <a target="_blank" href="http://sailsjs.com/about">The Sails Company</a>.</p>
<p class="license-info">© 2012-2020 The Sails Company. All Rights Reserved.<br/>
Waterline is free and open-source under the MIT License.<br/>
The trademarks used herein are the property of their respective owners.</p>
<div class="logos clearfix">
<!-- <a target="_blank" alt="The Sails logo" href="http://sailsjs.com"><img class="treeline-logo" src="https://sailsjs.com/images/[email protected]"/></a> -->
</div>
</div>
<ul class="footer-nav">
<li><a href="https://github.com/balderdashy/waterline">Github</a></li>
<li><a href="http://sailsjs.com/documentation/concepts/models-and-orm">Documentation</a></li>
<li><a href="http://sailsjs.com/contact">Hire us</a></li>
<li><a href="http://sailsjs.com/support">Support</a></li>
<li><a class="license" href="http://sailsjs.com/license"><span>License</span></a></li>
</ul>
<!-- <span class="license-info-mobile">© 2012-2015 Mike McNeil. All Rights Reserved. <br/> <a target="_blank" href="https://github.com/balderdashy/waterline/blob/master/LICENSE.md"><span>License</span></a></span> -->
</div>
</div>
</div>
<div class="star">
<iframe src="http://ghbtns.com/github-btn.html?user=balderdashy&repo=waterline&type=watch&count=true"
allowtransparency="true" frameborder="0" scrolling="0" width="100" height="20"></iframe>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-71657748-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>