trepo
v0.10.0
Published
Trepo Server
Downloads
12
Readme
trepo-js
Docs
The swagger docs are hosted here
Install
Node
npm install trepo
Example
Webworker
Use trepo-webworker.
Node
import Trepo from 'trepo';
let trepo = new Trepo('localhost');
trepo.start()
.then(ignored => trepo.request({
method: 'GET',
path: '/graph/info'
}))
.then(response => {
console.log(response);
})
.catch(error => {
console.error(error);
});