Docs/index.md

49 lines
1.6 KiB
Markdown
Raw Normal View History

2023-06-11 19:11:44 +00:00
---
layout: home
hero:
2023-06-25 12:28:14 +00:00
name: "LonaDB"
2023-07-06 20:17:07 +00:00
text: "JSON based and written in JavaScript"
tagline: Simple, free and Open-Source.
2023-06-11 19:11:44 +00:00
actions:
- theme: brand
text: Get Started
link: /guide/getting-started
- theme: alt
text: View on GitHub
link: https://github.com/LonaDB/Server
2023-08-12 09:54:12 +00:00
image:
src: /logo_large.svg
alt: LonaDB Logo
2023-06-11 19:11:44 +00:00
features:
- title: What is LonaDB?
2023-07-06 20:17:07 +00:00
details: LonaDB is an early-stage prototype of a JavaScript-based database. It utilizes Binary JSON as its storage format and provides support for multiple users and tables.
- title: Open-Source!
details: This is a Open-Source Project. This means that anyone can look at our source code. That way, we can't put a license check for example in our project.
2023-06-11 19:11:44 +00:00
- title: How does it work?
2023-07-06 20:17:07 +00:00
details: Hadro is our database server running in Node.js! It provides Client Libraries for interacting with the database. Also, it utilizes a TCP-Socket for communication with the clients.
- title: Your own instance!
details: LonaDB is self-hosted, meaning you can run it on your own server. This allows you to have full control over your data with no one spying.
2023-06-11 19:11:44 +00:00
---
2023-08-17 13:13:09 +00:00
<style>
:root {
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #3b82f6 30%, #86efac);
2023-06-11 19:11:44 +00:00
2023-08-17 13:13:09 +00:00
--vp-home-hero-image-background-image: linear-gradient(-15deg, #1d3cd8 50%, #22c55b 50%);
--vp-home-hero-image-filter: blur(40px);
}
@media (min-width: 640px) {
:root {
--vp-home-hero-image-filter: blur(56px);
}
}
@media (min-width: 960px) {
:root {
--vp-home-hero-image-filter: blur(72px);
}
}
</style>