https://github.com/latitude-dev/latitude
Developer-first embedded analytics
https://github.com/latitude-dev/latitude
analytics business-intelligence dashboard data data-analysis data-analytics data-app data-engineering data-science data-visualization duckdb embedded-analytics exploratory-data-analysis javascript-framework open-source react self-hosted sql svelte tailwindcss
Last synced: 4 months ago
JSON representation
Developer-first embedded analytics
- Host: GitHub
- URL: https://github.com/latitude-dev/latitude
- Owner: latitude-dev
- License: lgpl-3.0
- Created: 2024-01-31T12:48:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-04T10:09:08.000Z (10 months ago)
- Last Synced: 2024-08-04T10:58:21.902Z (9 months ago)
- Topics: analytics, business-intelligence, dashboard, data, data-analysis, data-analytics, data-app, data-engineering, data-science, data-visualization, duckdb, embedded-analytics, exploratory-data-analysis, javascript-framework, open-source, react, self-hosted, sql, svelte, tailwindcss
- Language: TypeScript
- Homepage: https://latitude.so
- Size: 4.61 MB
- Stars: 801
- Watchers: 6
- Forks: 35
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
No longer maintained
Latitude embedded analytics is no longer maintained as we've switched our focus to Latitude LLM. License is maintained so you are still free to use this project as it is. New maintainers are welcome.
The open-source framework for embedded analytics
The missing analytics layer between your database and your users.
See documentation β
Report Bug
Β·
Join Our Slack
Β·
Roadmap
Β·
X
## π Why Latitude?
Latitude lets you create API endpoints on top of your database/warehouse using just SQL, and embed interactive visualizations natively in your favorite frontend framework or through an iframe.
It's fast to get started, easy to maintain, and scales with your data.
## β¨ Features
- βοΈ Connect to any database or data warehouse
- π Easily compose parameterized SQL queries and expose them as API endpoints
- π¦ Built-in cache layer for lightning-fast query performance
- π Integrations with all common frontend frameworks (React, Svelte, Vue, VanilaJS)
- π¨ Optional layout engine to build standalone dashboards using Svelte and Tailwind
- π₯οΈ Support for embedding dashboards via iframe
- π Deploy with a single command `latitude deploy`
- π SSL-ready, encrypted parameters in url and parameterized queries to protect against SQL injection attacks
- π₯ Open-source driven by the community
## π« Examples
You can find sample projects using Latitude in action in the [examples](https://github.com/latitude-dev/latitude/tree/main/examples) directory.
## π Table Of Contents
- [Quick start](https://github.com/latitude-dev/latitude#-quick-start)
- [Connect to your data sources](https://github.com/latitude-dev/latitude#-connect-to-your-data-sources)
- [Write your SQL queries](https://github.com/latitude-dev/latitude#-write-your-sql-queries)- [Native frontend integration](https://github.com/latitude-dev/latitude#-native-frontend-integration)
- [Integrate with your frontend](https://github.com/latitude-dev/latitude#-integrate-with-your-frontend)
- [Layout engine and iframe embedding](https://github.com/latitude-dev/latitude#-layout-engine-and-iframe-embedding)
- [Use our layout engine](https://github.com/latitude-dev/latitude#-optional-use-our-layout-engine)
- [Embedding a standalone dashboard](https://github.com/latitude-dev/latitude#-embedding-a-standalone-dashboard)
- [Deploy](https://github.com/latitude-dev/latitude#-deploy)
- [Community](https://github.com/latitude-dev/latitude#-community)
- [Contributing](https://github.com/latitude-dev/latitude#-contributing)
- [Links](https://github.com/latitude-dev/latitude#-links)## β‘ Quick start
Hereβs a quick getting started guide to get the sample app up and running:
### 1. Install Latitude
Run the following command to install the Latitude CLI globally on your machine:
```
npm install -g @latitude-data/cli
```Note that if you're using Windows, you might need to follow these instructions first: [Windows setup](https://docs-analytics.latitude.so/guides/getting-started/windows-compatibility).
### 2. Create the starter project
Run this command to create a new Latitude project:
```
latitude start
```The CLI will ask you the project name. Once youβre done, youβll have a new
directory with a sample app that you can run and customize.### 3. Navigate to the project and run the app
```
cd my-new-app
``````
latitude dev
```This will start the development server and open the sample app in your browser.
## π Connect to your data sources
Set up the connection to your database or data warehouse through a simple configuration file.
```yaml source.yml
type: postgres
details:
database: db
user: username
password: β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’β’
host: postgres.example.com
port: 5432
schema: public
ssl: true
```We do not recommend to store your database credentials in the configuration file. Instead, you can use environment variables to store your credentials securely. Find out more about this in the [documentation](https://docs-analytics.latitude.so/sources/credentials).
We support the following sources:
- [x] [Athena](https://docs-analytics.latitude.so/sources/athena)
- [x] [BigQuery](https://docs-analytics.latitude.so/sources/bigquery)
- [x] [Clickhouse](https://docs-analytics.latitude.so/sources/clickhouse)
- [x] [Databricks](https://docs-analytics.latitude.so/sources/databricks)
- [x] [DuckDB](https://docs-analytics.latitude.so/sources/duckdb)
- [x] [MS SQL](https://docs-analytics.latitude.so/sources/mssql)
- [x] [MySQL](https://docs-analytics.latitude.so/sources/mysql)
- [x] [PostgreSQL](https://docs-analytics.latitude.so/sources/postgresql)
- [x] [Redshift](https://docs-analytics.latitude.so/sources/redshift)
- [x] [Snowflake](https://docs-analytics.latitude.so/sources/snowflake)
- [x] [SQLite](https://docs-analytics.latitude.so/sources/sqlite)
- [x] [Trino](https://docs-analytics.latitude.so/sources/trino)Find out more about connecting to sources in the [documentation](https://docs-analytics.latitude.so/sources/how-to-configure-sources).
## π§βπ» Write your SQL queries
Latitude makes it easy to fetch data from your database and expose it via an API endpoint in JSON format so that it can be easily consumed by your frontend application.
You can use parameters in your SQL queries to filter data based on external inputs. For example, you can create a query that fetches movies released between two years:
#### /queries/titles.sql
```sql titles.sql
select id,
title,
release_year,
type,
runtime,
imdb_score
from titles
where release_year between { param('start_year') } and { param('end_year') }
```Additionally, you can reference other queries in your SQL to create composable data pipelines. For example, this is a query that uses the results of the previous one to display the count of titles released each year:
#### /queries/titles-agg.sql
```sql titles-agg.sql
select
release_year,
count(*) as total_titles,
from { ref('titles') }
group by 1
order by 1 asc
```### Automatic API endpoints
Latitude will automatically expose these queries as API endpoints that you can fetch from your frontend application.
To use these endpoints with parameters, you can pass them in the URL. For example, to fetch movies released between 2000 and 2020, you can do:
```bash
curl http://localhost:3000/titles?start_year=2000&end_year=2020
```## β¨οΈ Native frontend integration
### Integrate with your frontend
Use our React components to fetch data from your API and display it in your application.
```bash
npm install @latitude-data/react
```Once the React package is installed in your project, add the LatitudeProvider:
```jsx
import React from 'react';
import ReactDOM from 'react-dom/client';
import { LatitudeProvider } from '@latitude-data/react';ReactDOM.createRoot(document.getElementById('root')!).render(
,
);
```You can fetch data from your Latitude data server with the useQuery hook:
```jsx
import { useQuery } from '@latitude-data/react';
import { useCallback } from 'react';export default function Example() {
const { data: movies, isFetching, compute } = useQuery({
queryPath: 'titles',
params: {
start_year: '2000',
end_year: '2020',
},
});const caption = isFetching ? 'Loading movies...' : 'List of movies';
const refresh = useCallback(() => compute(), [compute]);return (2
React Example with Latitude
Refresh
{!isFetching ? : }
{caption}
);
}
```## π₯οΈ Layout engine and iframe embedding
### Use our layout engine
If you want to build standalone dashboards, you can use our layout engine to create a dashboard with multiple visualizations.
To do so, simply create an `index.html` file under the `views` directory with the following content:
#### /views/index.html
```jsx
Netflix titles released over time
```
This will create a dashboard with a line chart and a table displaying the data fetched from the `titles` and `titles-agg` queries.
This dashboard can be accessed by navigating to `http://localhost:3000/`.
To pass parameters to the queries, add them to the URL as query parameters. For example: `http://localhost:3000/?start_year=2000&end_year=2020`.
Another option is to use our `` component to create a form that allows users to input parameters. Find out more about this in the [documentation](https://docs-analytics.latitude.so/views/components/inputs/text).
### Embedding a standalone dashboard
You can embed the dashboard in your application using an iframe. To do so, simply add the following code to your application:
```html
```
If you're using React, we released a React component that simplifies the process of embedding dashboards in your application. [Check out the documentation](https://docs-analytics.latitude.so/guides/embed/react-embed) to learn more.
## π Deploy
To deploy your Latitude project, run the following command:
```bash
latitude deploy
```This will deploy your project to the Latitude cloud, and you will get a URL where your project is hosted.
If it's your first time deploying, make sure to log in or sign up to Latitude by running `latitude login` or `latitude signup` respectively.
You can also deploy your project to your own infrastructure. Find out more about this in the [documentation](https://docs-analytics.latitude.so/guides/deploy/docker).
## π₯ Community
The Latitude community can be found on
[Slack](https://trylatitude.slack.com/join/shared_invite/zt-17dyj4elt-rwM~h2OorAA3NtgmibhnLA#/shared-invite/email)
where you can ask questions, voice ideas, and share your projects with other
people.## π€ Contributing
Contributions to Latitude are welcome and highly appreciated.
If you are interested in contributing, please join us on ourΒ [Slack
community](https://trylatitude.slack.com/join/shared_invite/zt-17dyj4elt-rwM~h2OorAA3NtgmibhnLA#/shared-invite/email),
open anΒ [issue](https://github.com/latitude-dev/latitude/issues/new), or
contribute a pull request.## π Links
- [Home page](https://latitude.so?utm_campaign=github-readme)
- [Documentation](https://docs-analytics.latitude.so/)
- [Slack community](https://trylatitude.slack.com/join/shared_invite/zt-17dyj4elt-rwM~h2OorAA3NtgmibhnLA#/shared-invite/email)
- [X / Twitter](https://x.com/trylatitude)