JS client lib to interact with iExec server REST API
- The iExec server API doc: https://serverapi.iex.ec
- The iExec SDK
- The iExec main documentation: https://docs.iex.ec
npm test
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
);