From 03ae31b1d060e9f7d3f3c45919bb06a1d5251d31 Mon Sep 17 00:00:00 2001 From: Evgeny Fomin Date: Thu, 16 May 2024 15:41:07 +0200 Subject: [PATCH] update README --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 5094ed8b1..e5cf645bf 100644 --- a/README.md +++ b/README.md @@ -232,6 +232,19 @@ From here we can build: ```cargo build``` +## grovedbg + +There is a work in progress implementation of a debugger layer for GroveDB. To use this library with +these capabilities enabled one needs to set a dependency with `grovedbg` feature. Then, to launch +visualizer tool to observe the database structure inside of your browser on a port, let's say 10000, +the following snippet should do: + +```rust + let db = Arc::new(GroveDb::open("db").unwrap()); + db.start_visualzier(10000); +``` + +Just remember to use Arc because the HTTP server might outlast the GroveDB instance. ## Performance