A development panel for exploring and interacting with VQL (Valthera Query Language) adapters and databases. The panel provides a UI for testing queries, inspecting adapters, and visualizing data structures.
- Browse database adapters and their collections.
- View adapter metadata (type, version, etc.).
- Explore inferred data structure types dynamically.
To install the dev panel as a dev dependency:
npm install --save-dev @wxn0brp/vql-devIn your main application:
import { VQLProcessor } from "@wxn0brp/vql";
import { VqlDevPanel } from "@wxn0brp/vql-dev";
const VQL = new VQLProcessor(...); // configure as needed
const panel = new VqlDevPanel(VQL);
panel.start();Open the following URL in your browser to access the dev panel:
👉 https://wxn0brp.github.io/VQL-dev/?p=48652
MIT License - see LICENSE.