$ npm i @or-sdk/flows
import { Flows } from '@or-sdk/flows'
// with direct api url
const flows = new Flows({
token: 'my-account-token-string',
dataHubSvcUrl: 'http://example.data-hub-svc/endpoint',
deployerUrl: 'http://example.deployer/endpoint'
});
// with service discovery(slower)
const flows = new Flows({
token: 'my-account-token-string',
discoveryUrl: 'http://example.discovery/endpoint'
});