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/
npm install tigergraph.js
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));
});