thriftily

A plugin for use thrift clients quickly and friendly with nodejs or eggjs.

Usage no npm install needed!

<script type="module">
  import thriftily from 'https://cdn.skypack.dev/thriftily';
</script>

README

Thriftily

A plugin for use thrift clients quickly and friendly with nodejs or eggjs.

Support: Node 10+,Eggjs

Npm Version License Npm Download

Useage

npm install thriftily -save

Common Config

const config = {
  app: true, // default true, use it with eggjs app
  agent: false, // default false, use it with eggjs agent
  pinglog: true, // default false,false is use logger.debug, ture is use logger.info print the ping log.
  default: {
    // it will as default as all clients config
    reconnect: true, // default true
    reconnectMaxTimes: 200, // default 0, 0 means no limit
    reconnectMaxSleep: 30000, // default 60000ms, reconnect sleep equals reconnect times multiplication 1000ms.
    host: '1.2.3.4',
    pingSleep: 5000 // default 10000ms
  },
  clients: {
    // clients config example, msFoo & msBar as alias name
    msFoo:{
      host: 'foohost',
      port: 'fooport',
      client: yourFooGenjs
      ping: 'youpingName',  // your ping method name in yourFooGenjs
      pingSleep: 5000
    },
    msBar:{
      host: 'barhost',
      port: 'barport',
      client: yourBarGenjs
    }
  }
}

With Egg

config/plugin.js

module.exports.thriftily = {
  enable: true,
  package: 'thriftily'
}

config/config.js

module.exports.thriftily = thriftilyConfig // same as upper common config

Use in service

const { Service } = require('egg')

class FooService extends Service {
  bar() {
    const { app } = this
    const { client } = app.thriftily.get('your client name')
    try{
      const res = await client.yourClientMethod()
    }catch(e){
      console.log(e)
    }
  }
}

With Node

const { ThriftilyManager } = require('thriftily')
const thriftilyConfig = require('your config path')

const manager = new ThriftilyManager(yourConfig, yourLogger)
manager.start()

const { client } = manager.get('your client alias')

try {
  const res = await client.yourClientMethod()
} catch (e) {
  console.log(e)
}