woody_js/README.md
2023-11-02 14:27:11 +03:00

740 B

Woody js

Browser-Compatible Node.js Thrift Binary Protocol Connection

Installation

npm install @vality/woody

Usage Example

import connectClient from '@vality/woody';

const host = 'localhost';
const port = '8080';
const path = '/some/path';

// Generated Thrift client
const genClient = {
    /* ... your thrift client ... */
};

// Connection options
const connectOptions = {
    https: true,
    // ... other options ...
};

// Error callback
const errorCb = (err) => {
    console.error('An error occurred:', err);
};

// Create a client connection
const client = connectClient(host, port, path, genClient, connectOptions, errorCb);

// Now you can use 'client' to interact with Thrift service