Documentation & Guides

Everything you need to know about using DataPulse. From getting started to advanced features.

Quick Start Guide

1. Connect Your Database

// Example connection string const dbConfig = { host: "your-host.com", port: 5432, database: "your_database", user: "your_username", password: "your_password" };

2. Write Your First Query

Natural Language:

"Get me the top 5 customers with the highest orders"

Generated SQL:

SELECT customer_name, COUNT(*) as order_count FROM orders GROUP BY customer_name ORDER BY order_count DESC LIMIT 5;

3. View Results

Results are displayed in an interactive table with options to view as charts, export to various formats, and share with your team.