Skip to content

cube-js/cube

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

10,610 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Cube Core β€” Open-Source Semantic Layer


Website β€’ Docs β€’ Examples β€’ Blog β€’ Slack β€’ X

npm version GitHub Actions FOSSA Status

Cube Core is the open-source semantic layer. Define metrics, dimensions, joins, and access rules once in code, then expose them through SQL, REST, and GraphQL APIs to anything downstream β€” BI tools, custom applications, or AI agents. Cube Core is headless: it doesn't ship a UI, so you can build the analytics experience that fits your product.

Cube Core works with all SQL data sources, including cloud data warehouses like Snowflake, Databricks, and BigQuery; query engines like Presto and Amazon Athena; and application databases like Postgres. It has a built-in relational caching engine to provide sub-second latency and high concurrency for API requests.

Learn more about connecting Cube to data sources and analytics & visualization tools.

Why Cube Core?

Every BI tool relies on a semantic layer as its core engine β€” the component that defines metrics, dimensions, and business logic and hides the complexity of the underlying data sources. Most semantic layers are proprietary, tightly coupled to a single BI platform, and can't be reused across other tools.

Cube Core is an open, standalone semantic layer that any analytics application or AI agent can consume through standard APIs. Define your metrics once and use them everywhere β€” internal BI, embedded analytics, AI agents β€” without re-implementing the model in each place.

Getting Started

You can run Cube Core locally or self-host it with Docker.

Once Docker is installed, in a new folder for your project, run:

docker run -p 4000:4000 \
  -p 15432:15432 \
  -v ${PWD}:/cube/conf \
  -e CUBEJS_DEV_MODE=true \
  cubejs/cube

Then open http://localhost:4000 in your browser to continue setup.

For a step-by-step guide, see the docs.

Cube Core vs. Cube

Cube is our commercial product β€” an agentic analytics platform built on Cube Core. Same semantic layer underneath, plus the rest of what makes it a full BI platform: Analytics Chat, workbooks and dashboards, embedded analytics surfaces, managed deployment, RBAC, multi-tenancy, and integrations with Tableau, Power BI, Excel, and Google Sheets.

The data model is fully compatible both ways: a model you build in Cube Core runs unchanged in Cube, and vice versa. Cube Core stays open-source and is what we run inside Cube ourselves.

  • Use Cube Core when you want to own the stack β€” a custom BI experience, deeply integrated embedded analytics, or AI agents that need a governed semantic foundation.
  • Use Cube when you want a managed, full-featured BI platform out of the box β€” internal analytics or customer-facing embedded analytics without building the surrounding platform yourself.

For more on how we think about the split, see The Future of Cube Core and Cube.

For a tour of what's in Cube today, watch the workshop:

Cube agentic analytics workshop on YouTube

Or try Cube for free.

Resources

Contributing

There are many ways you can contribute to Cube Core! Here are a few possibilities:

  • Star this repo and follow us on X.
  • Add Cube to your stack on Stackshare.
  • Upvote issues with πŸ‘ reaction so we know what the demand is for particular issues to prioritize them within the roadmap.
  • Create issues every time you feel something is missing or goes wrong.
  • Ask questions on Stack Overflow with cube.js tag if others might have these questions as well.
  • Provide pull requests for all open issues and especially for those with help wanted and good first issue labels.

All sorts of contributions are welcome and extremely helpful πŸ™Œ Please refer to the contribution guide for more information.

License

Cube Client is MIT licensed.

Cube Backend is Apache 2.0 licensed.

FOSSA Status