New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

celindho-serializeapp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

celindho-serializeapp

Serializes a Qlik Sense App into JSON

latest
Source
npmnpm
Version
3.0.4
Version published
Maintainers
1
Created
Source

serializeapp

serializeapp is a node utility module to serialize a Qlik Sense app into a JSON object.
Pass it an enigma.js app object and it returns a promise containing the JSON representation of that app.

installing

npm install celindho_serializeapp

examples

Connect to Qlik Sense Desktop, open a app and pass that into serializeapp.

const serializeapp = require("serializeapp");
const enigma = require("enigma.js");
const WebSocket = require("ws");

enigma
  .getService("qix", {
    schema: require(`./node_modules/enigma.js/schemas/qix/3.2/schema.json`),
    session: {
      host: "localhost",
      port: 4848,
      secure: false,
    },
    createSocket: (url) => new WebSocket(url),
  })
  .then((qix) => qix.global.openDoc("Executive Dashboard.qvf"))
  .then((app) => serializeapp(app))
  .then((result) => console.log(result));

Returns

{
properties: {}, -> @Object AppEntry
loadscript: '', -> @String Loadscript
sheets: [], -> @Array - Array of GenericObjectEntry and its children
stories: [], -> @Array - Array of GenericObjectEntry and its children
masterobjects: [], -> @Array - Array of GenericObjectEntry
dataconnections: [], -> @Array - Array of Connection
dimensions: [], -> @Array - Array of GenericDimensionProperties
measures: [], -> @Array - Array of GenericMeasureProperties
bookmarks: [], -> @Array - Array ofGenericBookmarkLayout
embeddedmedia: [], -> @Array of MediaListItem
fields: [], -> @Array of NxFieldDescription
snapshots: [] -> @Array of Array of GenericBookmarkLayout
}

Keywords

qlik

FAQs

Package last updated on 06 Jul 2022

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