Files
nebula.js/apis/stardust
renovate[bot] 08f0ab53ec fix(deps): update minor and patch (#1868)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-12-15 16:27:11 +01:00
..
2025-12-08 14:17:07 +01:00
2025-08-18 16:15:43 +02:00
2025-12-08 14:17:07 +01:00

stardust

Stardust is a JavaScript library for building and embedding visualizations on top of Qlik's Associative Engine.

Installation

npm install @nebula.js/stardust

Example usage

import { embed } from '@nebula.js/stardust';
import mekko from '@nebula.js/sn-mekko-chart';

const orion = embed.createConfiguration({
  types: [{
    name: 'mekko',
    load: () => Promise.resolve(mekko);
  }]
})(app);

orion.render({
  element,
  type: 'mekko',
  fields: ['Product', 'Region', 'Sales']
});

Typescript

Stardust comes with typescript definitions. It references the Qlik's Engine definitions published at @types/qlik-engineapi.

When installing Stardust it also installs the package @types/qlik-engineapi. Use overrides in your package.json if the installed version deviates from the Qlik Engine you are using:

{
  "overrides": {
    "@types/qlik-engineapi": "<your-engine-version>"
  },
  ...
}