Installation
Getting started with QueryLeaf is straightforward. This guide will walk you through the installation process and prerequisites.
Prerequisites
Before installing QueryLeaf, make sure you have:
- Node.js 16.x or higher
- npm or yarn package manager
- MongoDB (for running actual queries)
- Docker (optional, for running integration tests)
Installing QueryLeaf
QueryLeaf is divided into three separate packages to minimize dependencies:
Core Library
Install the core library as a dependency in your project:
Command Line Interface
To use the command-line interface, install the CLI package:
After installation, you'll have access to the queryleaf
command.
Web Server
To use the web server for a MongoDB SQL proxy, install the server package:
After installation, you'll have access to the queryleaf-server
command.
TypeScript Support
QueryLeaf is written in TypeScript and includes type definitions out of the box. You don't need to install any additional packages for TypeScript support.
Peer Dependencies
QueryLeaf has the following peer dependencies:
mongodb
: The official MongoDB driver for Node.jsnode-sql-parser
: Used to parse SQL statements
These dependencies will be installed automatically when you install QueryLeaf.
Setting Up Your Project
Here's a basic project setup with QueryLeaf:
-
Create a new directory for your project:
-
Initialize a new npm project:
-
Install QueryLeaf and MongoDB client:
-
Create a basic file structure:
-
Add a basic usage example in
src/index.js
:const { MongoClient } = require('mongodb'); const { QueryLeaf } = require('@queryleaf/lib'); async function main() { // Connect to MongoDB const client = new MongoClient('mongodb://localhost:27017'); await client.connect(); console.log('Connected to MongoDB'); // Create QueryLeaf instance const queryLeaf = new QueryLeaf(client, 'mydatabase'); try { // Execute a query const results = await queryLeaf.execute('SELECT * FROM mycollection LIMIT 10'); console.log('Query results:', results); } catch (error) { console.error('Error executing query:', error); } finally { // Close the connection await client.close(); console.log('MongoDB connection closed'); } } main().catch(console.error);
Verifying Installation
To verify that QueryLeaf is installed correctly and working:
- Make sure you have MongoDB running locally
- Create a simple test script
- Run the script and check for any errors
If everything is set up correctly, you should be able to execute SQL queries against your MongoDB database.
Next Steps
Now that you have installed QueryLeaf, you can proceed to:
- Quick Start Guide: Learn the basics of using QueryLeaf
- Core Concepts: Understand the architecture and principles
- CLI Documentation: Learn how to use the command-line interface
- Server Documentation: Learn how to run and use the web server
- Examples: See practical examples of using QueryLeaf