Docs/index.html
2023-06-08 21:42:31 +02:00

52 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>LonaDB</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kanit:wght@300&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://lona.js.org/style.css" type="text/css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="https://lona.js.org/logo.png">
</head>
<body>
<p class="luna">LonaDB</p>
<div class="what">
<p class="title">What is LonaDB?</p>
<p>LonaDB is a early prototype of a Database written in JavaScript.</p>
<p>It uses JSON to store everything and supports different users.</p>
</div>
<br>
<br>
<div class="how-work">
<p class="title">How does it work?</p>
<p>LonaDB is a Open Source Project and can be self-hosted. It uses the Node.JS Library "net" to start a socket.</p>
<p>Requests can be sent from a Client. These requests are stringified JSONs containing all data required from the server to operate and give the requested variable's value for example.</p>
<br>
<p>There is currently only one official client for LonaDB, which is written in JavaScript.</p>
<a href="https://www.npmjs.com/package/lonadb-client">Client</a>
</div>
<br>
<br>
<div class="where">
<p class="title">Where can I get LonaDB?</p>
<p>LonaDB is available on GitHub. In the README.md is a quick tutorial on how to install LonaDB.</p>
<a href="https://github.com/LonaDB/">GitHub</a>
</div>
<br>
<br>
<div class="bottom">
<p>© 2023 Collin Buchkamer. All rights reserved.</p>
</div>
</body>
</html>