TigerGraph-DevLabs / Tigergraph.js

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

Home Page:https://tigergraph-devlabs.github.io/Tigergraph.js/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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));
});

About

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

https://tigergraph-devlabs.github.io/Tigergraph.js/

License:MIT License


Languages

Language:HTML 79.6%Language:JavaScript 20.4%