Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 989 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 989 Bytes

iexec-server-js-client

Build Status npm version license

JS client lib to interact with iExec server REST API

Ressources

Test

npm test

Example

const createIEXECClient = require('iexec-server-js-client');

const iexec = createIEXECClient({ server: 'https://localhost:443' });
iexec.getCookieByJWT('my_jwt_token').then(
  iexec.getAppsUIDs().then(console.log) // print apps from server
);