mirror of
https://github.com/valitydev/woody_js.git
synced 2024-11-06 00:05:19 +00:00
.github | ||
src | ||
.gitignore | ||
.npmrc | ||
.prettierignore | ||
.prettierrc | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md | ||
vite.config.js |
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