Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@nebula.js/stardust

Package Overview
Dependencies
Maintainers
7
Versions
154
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nebula.js/stardust

Product and framework agnostic integration API for Qlik's Associative Engine

Source
npmnpm
Version
6.0.0-alpha.3
Version published
Weekly downloads
13K
1.59%
Maintainers
7
Weekly downloads
 
Created
Source

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

Keywords

qlik

FAQs

Package last updated on 11 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts