An express API gateway inspired by netflix zuul.
What is Bruff
Bruff is an API Gateway built as an express middleware on Nodejs. It has the ability to route requests to multiple upstream servers or endpoints asynchronously or synchronously if dependency exist.
Why did we built Bruff
Our client applications (Web and Mobile) consume resources from different micro-services in order to perform
different operations. The mobile client particularly had performance issues due to the fact that it called multiple
endpoints from different services to perform a user action and or got response data more than it needed which increased
latency. To solve this problem we found ourselves building middleware called Backend For Frontend (BFF) which will
do all the work of calling multiple services, aggregating their responses and trimming out unneeded fields in the response
for the client app. This approach increased the mobile client performance greatly.
For example, when a user to logs in into our mobile app the app needs to get access token from a service, and then calls another service to get the profile data of the user. The BFF came in to provide the mobile client with one new endpoint called /login
that abstracts this sequence of actions from the mobile app.
Because we realized we will be building a lot of middleware applications like this, we decided to embark on the journey
of looking for a framework for this and we found Netflix Zuul. The problem is we could not use Netflix zuul as
our engineering team could not support development in Java then we built our in house tool and called it Bruff.
What can Bruff do for you?
- Dynamic routing - Bruff can route single request, multiple dependent and multiple independent requests to different upstream servers
- With it, you can filter and mutate responses from upstream servers to specific responses needed by client applications.
- You can enable caching in Bruff express (under development).
- You can do load balancing in bruff.
- Others - because Bruff in itself is an express middleware you can do other things such as authentication with
other express middlewares. You only need to call your middleware before calling bruff.
Getting started
To get started with Bruff you need to install the bruff npm module
npm install bruff --save
Create a bruff configuration module which holds the information and instruction you have for bruff e.g gateway.js
module.exports = {
gateway: [
{
base: "POST:/login",
_to: [{
url: "localhost:8987/oauth/token",
title: "oauth",
method: "POST",
requires: {
form: {
username: "{{client.req.body.username}}",
password: "{{client.req.body.password}}",
client_id: context => context.client.req.body.clientId,
client_secret: context => context.client.req.body.clientSecret
}
}
}, {
url: ["localhost:8787/me", "localhost:8787/me"],
title: "me",
cacheKey: "{{responses.0.access_token}}",
method: "GET",
requires: {
headers: {
Authorization: "Bearer {{responses.0.access_token}}"
}
},
after: []
}],
order: "sync"
}
],
config: {
cache: {
time: 3600,
get: function () {},
set: function () {}
}
}
}
Once you have your configuration set you can then go to your app.js and do :
var bruff = require('bruff-express');
var bruffConfig = require('./gateway);
var express = require('express);
var app = express();
app.use(bruff(bruffConfig));
app.list(8989);