All Projects → qlik-oss → Enigma.js

qlik-oss / Enigma.js

Licence: mit
JavaScript library for consuming Qlik's Associative Engine.

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Enigma.js

Jelloswift
Swift soft body physics engine
Stars: ✭ 134 (-23.43%)
Mutual labels:  engine
Rpg Core
UNITY engine RPG framework
Stars: ✭ 146 (-16.57%)
Mutual labels:  engine
Linkis
Linkis helps easily connect to various back-end computation/storage engines(Spark, Python, TiDB...), exposes various interfaces(REST, JDBC, Java ...), with multi-tenancy, high performance, and resource control.
Stars: ✭ 2,323 (+1227.43%)
Mutual labels:  engine
Pleco
A Rust-based re-write of the Stockfish Chess Engine
Stars: ✭ 137 (-21.71%)
Mutual labels:  engine
Opensurge
A fun 2D retro platformer inspired by Sonic games and a game creation system.
Stars: ✭ 143 (-18.29%)
Mutual labels:  engine
Scylla
The Simplistic Information Gathering Engine | Find Advanced Information on a Username, Website, Phone Number, etc.
Stars: ✭ 154 (-12%)
Mutual labels:  engine
Expr
Expression language for Go
Stars: ✭ 2,123 (+1113.14%)
Mutual labels:  engine
Protogame
This project has been sunset as of 1st Jan 2018 and is no longer supported or maintained
Stars: ✭ 166 (-5.14%)
Mutual labels:  engine
Kittik
Create slides in TypeScript and present them in the terminal using ASCII only!
Stars: ✭ 147 (-16%)
Mutual labels:  engine
Rubeus
A cross platform 2D game engine written in C++ for beginners
Stars: ✭ 159 (-9.14%)
Mutual labels:  engine
Rg3d
3D and 2D game engine written in Rust
Stars: ✭ 2,998 (+1613.14%)
Mutual labels:  engine
Creature webgl
2D Skeletal Animation WebGL Runtimes for Creature ( PixiJS, PhaserJS, ThreeJS, BabylonJS, Cocos Creator )
Stars: ✭ 140 (-20%)
Mutual labels:  engine
Sourcehold
Open source re-implementation of Stronghold 1
Stars: ✭ 152 (-13.14%)
Mutual labels:  engine
Mine.js
🌏 A Minecraft-like voxel engine built in Javascript. (formerly mc.js)
Stars: ✭ 136 (-22.29%)
Mutual labels:  engine
Mundus
A 3D world/level editor built with Java, Kotlin & libGDX.
Stars: ✭ 164 (-6.29%)
Mutual labels:  engine
Szl
A lightweight, embeddable scripting language
Stars: ✭ 134 (-23.43%)
Mutual labels:  engine
Innocenceengine
Cross-platform modern game engine.
Stars: ✭ 149 (-14.86%)
Mutual labels:  engine
Monogame.forms
MonoGame.Forms is the easiest way of integrating a MonoGame render window into your Windows Forms project. It should make your life much easier, when you want to create your own editor environment.
Stars: ✭ 165 (-5.71%)
Mutual labels:  engine
Torrentpier
Main project repository
Stars: ✭ 166 (-5.14%)
Mutual labels:  engine
Inexor Core
UNMAINTAINED: Please have a look at the entity-system
Stars: ✭ 156 (-10.86%)
Mutual labels:  engine

CircleCI Coverage Status

enigma.js is a library that helps you communicate with Qlik QIX Engine. Examples of use may be building your own browser-based analytics tools, back-end services, or command-line scripts.



Getting started

Prerequisites

Before continuing, make sure that you have these tools installed:

  • Node.js >= 4.0
  • Git bash if on Windows

And know of at least some of these web technologies:

  • JavaScript
  • Promises
  • Websockets

Schemas

enigma.js use schemas as a source when generating the QIX Engine API. The exact version of the schema you need is based on the QIX Engine version you want to communicate with, as well as what you plan on using in the QIX Engine API.

Keep in mind that before version 12.20.0 the schema version corresponds to the Qlik Sense Enterprise version, and from 12.20.0 and forward, the schema version is mapped to the QIX Engine API version.

Read more:

Usage

First off, install enigma.js and a WebSocket library:

npm i -S enigma.js ws

Next, create a new file called my-file.js and put the following code into it:

const enigma = require('enigma.js');
const WebSocket = require('ws');
const schema = require('enigma.js/schemas/12.20.0.json');

// create a new session:
const session = enigma.create({
  schema,
  url: 'ws://localhost:9076/app/engineData',
  createSocket: url => new WebSocket(url),
});

// bind traffic events to log what is sent and received on the socket:
session.on('traffic:sent', data => console.log('sent:', data));
session.on('traffic:received', data => console.log('received:', data));

// open the socket and eventually receive the QIX global API, and then close
// the session:
session.open()
  .then((/*global*/) => console.log('We are connected!'))
  .then(() => session.close())
  .then(() => console.log('Session closed'))
  .catch(err => console.log('Something went wrong :(', err));

And then run it:

node my-file.js

You may need to adjust the code so the URL points towards your running QIX Engine.

/getting-started.gif

You may also use a service like unpkg to test enigma.js directly in your browser without using Node.js for development purposes.

Create a HTML file index.html and insert the following example content:

<script src="https://unpkg.com/enigma.js/enigma.min.js"></script>
<script>
  fetch('https://unpkg.com/enigma.js/schemas/12.34.11.json')
    .then(response => response.json())
    .then(schema => {
      const session = enigma.create({
        schema,
        // Change the url to point to your QIX instance
        url: 'ws://localhost:9076/app/engineData',
        createSocket: url => new WebSocket(url)
      })

      session.open()
        .then(global => global.engineVersion())
        .then(result => document.body.innerHTML = result.qComponentVersion)
        .then(() => session.close())
    });
</script>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].