Compose SDK is a Software Development Kit that enables a composable, code-driven way to use Sisense platform capabilities. Build analytics and data-driven experiences into your product with code using Compose SDK, a set of client-side libraries and components for query composition, data visualization, dashboard, and more.
- Create Sisense queries, filters, charts, and dashboards directly from your application code. No predefined dashboards or widgets required - or render existing widgets or dashboards by ID. Mix and match approaches to fit your needs.
- Composable, modular and extensible. Use our components, customize them, or bring your own. Compose SDK works equally well for building new applications or upgrading existing ones to use Sisense’s powerful analytics platform.
- Built with developer experience in mind. The SDK is available via GitHub and NPM, supports Typescript and common UI frameworks (React, Angular, Vue), and includes documentation, code samples and CLI tools that help you get things done with ease.
- Compose SDK requires a Sisense license & access to a Sisense instance
- Compose SDK supports Sisense version
L2022.10
or newer - Compose SDK currently supports development using JavaScript/Typescript and React/Angular/Vue
- This repository is a monorepo containing all SDK packages. You can find the individual packages here
You can find documentation for Compose SDK on the Sisense Developer Portal.
Demo applications for Compose SDK + Typescript are available at https://csdk-react.sisense.com/ (React), https://csdk-angular.sisense.com/ (Angular), and https://csdk-vue.sisense.com/ (Vue). The source code repos are at compose-sdk-react-demo, compose-sdk-angular-demo, and compose-sdk-vue-demo.
This project uses Yarn 3 for package management, Yarn workspaces for monorepo management, and the Yarn version plugin for versioning/publishing.
Using Volta as
your Node.js version manager is strongly recommended, but Node Version Manager nvm
is also supported.
Currently, the project is tested with Node.js 18.16.0 or newer.
Clone the repo, move to the repo directory, install dependencies, and build the project:
cd compose-sdk-monorepo
yarn install
yarn build
(First installation and build may take a few minutes to complete.)
The Storybook contains chart examples of different chart types and configurations. These examples do not need a Sisense instance to run.
From packages/sdk-ui
, run:
yarn storybook
You can find more information about setting up an app using this SDK in quickstart.md, quickstart-angular.md, or quickstart-vue.md.