Function: createClient()
createClient(
opts):MllpClient
Create an MllpClient. Equivalent to new MllpClient(opts).
Parameters
opts
Returns
Example
import { createClient } from '@cosyte/mllp';
const client = createClient({ host: 'localhost', port: 2575 });
await client.connect();
const ack = await client.send(payloadBuffer);
await client.close();