/Tigergraph.js

A Javascript wrapper for TigerGraph aimed to simplify the TigerGraph-JavaScript development process

Primary LanguageHTMLMIT LicenseMIT

Tigergraph.js

npm version npm downloads discord

A Javascript wrapper for TigerGraph aimed to simplify the TigerGraph-JavaScript development process

Check out the documentation here: https://tigergraph-devlabs.github.io/Tigergraph.js/

Quickstart

Installation

npm install tigergraph.js

Usage

Import tigergraph.js, create a connection, then run commands!

const tgjs = require("tigergraph.js");

tgjs.TigerGraphConnection("DOMAIN.i.tgcloud.io", "MyGraph", "tigergraph_username", "tigergraph_password").then((conn) => {
    conn.echo().then(data => console.log(data));
});