@nebula.js/stardust
TypeScript icon, indicating that this package has built-in type declarations

5.1.0 • Public • Published

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>"
  },
  ...
}

Dependencies (0)

    Dev Dependencies (25)

    Package Sidebar

    Install

    npm i @nebula.js/stardust

    Weekly Downloads

    13,905

    Version

    5.1.0

    License

    MIT

    Unpacked Size

    13.1 MB

    Total Files

    14

    Last publish

    Collaborators

    • nilzona_user
    • niekvanstaveren
    • likang6688
    • ccm33
    • qlikossbuild
    • veinfors
    • tobias-astrom-qlik