fast-gateway
fast-gateway copied to clipboard
Fast-gateway is an easy to use Node.js API gateway framework built to handle large scale API traffic with great performance and scalability. Written with JavaScript, it is a framework for the masses!
Hi team, How can I read the response data on hook here: ``` hooks: { onResponse (req, res, stream) { // I want to read response data here } ```
Hey Team, I was trying to configure [swagger-stats](https://www.npmjs.com/package/swagger-stats) with fast-gateway, is there any way to archive it. Thanks
**Feature proposal** `onResponse` could support node transforms applied to the pipeline in order to allow reasonable performant, on-the-fly, transformations . A developer can achieve such result in a reusable fashion...
**gRPC support** gRPC is now widely used for inter services communication. Hence upstream services might not be running as standard REST services. gRPC uses HTTP2 and hence it should be...
How to combine responses from multiple targets, essentially we want to do is this: ``` const gateway = require('fast-gateway') const server = gateway({ routes: [{ prefix: '/service', target: { 'service1':'http://127.0.0.1:3000/a',...
Hi! thanks for this lib!! i have a problem with serving swagger UI under routes specified in fast-gateway. steps to repoduce ```ts gateway({ prefix: '/test', target: `http://localhost:3022`, docs: { name:...
I'm using typescript as per project requirements and using fastify gateway for researching as a possible alternate for a commercial gateway. While writing middleware, the request, response and next need...
I am hitting the API prefix and its working fine but when i try to upload file its getting consoled in the gateway but not in the microservice. its giving...