Docs/index.html

52 lines
2.1 KiB
HTML
Raw Normal View History

2023-06-07 20:44:17 +00:00
<!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">
2023-06-07 20:56:15 +00:00
<link href="https://lonadb.github.io/Website/style.css" type="text/css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="https://lonadb.github.io/Website/logo.png">
2023-06-07 20:44:17 +00:00
</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>
<p>Please remember to edit the config.js file!</p>
<a href="https://github.com/Hanyaku-Chan/LonaDB/">GitHub</a>
</div>
<br>
<br>
<div class="bottom">
<p>© 2023 Collin Buchkamer. All rights reserved.</p>
</div>
</body>
</html>