From 0d612173f984b17e0c28bfa4d76084a39ad08641 Mon Sep 17 00:00:00 2001 From: Anton Nesterov <48190253+nesterow@users.noreply.github.com> Date: Thu, 22 Aug 2024 09:30:37 +0200 Subject: [PATCH] [chore] fix readme --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e70ec94..4bfed18 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,8 @@ _Use cases:_ - For IOT networks when MySQL/PG are too heavy. - If you need a layer between your application and the database (i.e. for caching). -- If you want a MongoDB-like query interface for your SQL. +- If you want a MongoDB-like query interface for your SQL db. +- When you need a SQLite proxy (useful to share datasets with services) ## Usage @@ -116,3 +117,12 @@ for await (const row of rows) { console.log(row); // Jason, Jackson } ``` + +## Internals + +The client uses a light builder and messagepack over http. It is relatively easy to implement a client in any language see [the docs](./doc/) + +## License + +While in alpha stage the project is free for research purposes. +Later it will be released under MIT-like license with AI/dataset exclusion terms.