6.3.1 • Published 3 years ago

qrs-interact v6.3.1

Weekly downloads
13
License
ISC
Repository
github
Last release
3 years ago

Status

Project Status: Inactive – The project has reached a stable, usable state but is no longer being actively developed; support/maintenance will be provided as time allows. CircleCI
NPM

qrs-interact

QRS Interact is a simple javascript library that allows users to send queries to the Qlik Sense Repository Service.

Getting Started

For more information and advanced usage, please reference the wiki.

Installing

npm install qrs-interact

Usage

To use the qrs-interact module, first you must create a new instance.

var instance = new qrsInteract('<someHostname>');

Once you have initialized an instance, GET, POST, PUT, and DELETE all return promises. They can be used as follows.

instance.Get('<somePath>')
    .then(function(result)
    {
        // do some work
    })
    .catch(function(error)
    {
        // catch the error
    });
Example
var qrsInteract = require('qrs-interact');

var instance1 = new qrsInteract("abc.qlik.com");

instance1.Get('about')
    .then(function(result)
    {
        console.log(result);
    })
    .catch(function(error)
    {
        console.log(error);
    });
6.3.1

3 years ago

6.2.1

3 years ago

6.2.0

3 years ago

6.1.0

4 years ago

6.0.1

4 years ago

5.0.0

4 years ago

6.0.0

4 years ago

4.0.1

5 years ago

4.0.0

5 years ago

3.0.1

6 years ago

3.0.0

7 years ago

2.5.7

7 years ago

2.5.6

7 years ago

2.5.5

7 years ago

2.5.4

7 years ago

2.5.3

7 years ago

2.5.2

7 years ago

2.5.1

7 years ago

2.5.0

7 years ago

2.4.1

8 years ago

2.4.0

8 years ago

2.3.0

8 years ago

2.2.0

8 years ago

2.1.0

8 years ago

2.0.3

8 years ago

2.0.2

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago