0.1.2 • Published 6 years ago

qix-info v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

qix-info

CircleCI

Library & CLI to get some information from QIX using enigma.js.


About

A super simple & minimalistic library & CLI to get some information out of the QIX engine.
Ideal for some prototyping work.

Installation

As a library

$ npm install qix-info --save-dev

As a command line tool

$ npm install qix-info -g

As a Docker container

$ docker pull stefanwalther/qix-info

Usage

As a library

const QixInfo = require('qix-info');

(async () => {
  let qixInfo = new QixInfo();
  let apps = await qixInfo.listApps();
  console.log(`Amount of apps: ${apps.length}`);
})();

CLI

List all apps:

$ qix-info --host localhost:9076 list-apps

Command: list-apps

Docker container

$ docker run --net="host" stefanwalther/qix-info list-apps

Roadmap

I might want to add more functionality over time (e.g. such as the healthcheck endpoint, listing extensions, etc.), but only as needed.

Feel free to extend this library and adding a pull request.

Author

Stefan Walther

License

MIT


This file was generated by verb-generate-readme, v0.6.0, on January 21, 2018.