1.0.2 • Published 6 years ago

gstore-whu v1.0.2

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

gStoreNode

Node.js client for gStore

Usage

npm install https://github.com/FrontMage/gStoreNode

or

npm install gstore-whu --save

const GStoreClient = rquire("gstore-whu");
const client = new GStoreClient(
  "username",
  "password",
  "http://localhost:9000"
);

(async function() {
  const result = await client.query("lubm", "select * where {?s ?p ?o}");
  console.log(result);
})();