Minimalist, fast framework for building GRPC services in Node JS

Get Started

Focused on simplicity and high performance

Fully covered by tests

Promise based, which means no callbacks

Written in ES6 for ES6

Easy to use

const Condor = require('condor-framework');

class Greeter {
  sayHello(call) {
    return { 'greeting': 'Hello ' + call.request.name };
  }
}

const logger = (context, next) => {
  console.log('Request:', call.request);
  return next();
};

const app = new Condor()
  .addService('./protos/greeter.proto', 'myapp.Greeter', new Greeter())
  .use(logger)
  .start();
{% include analytics.html %}