compoxure
compoxure copied to clipboard
Proxy middleware for express that enables composition of microservices.
Reading the documentation and browsing in issues here (like https://github.com/tes/compoxure/issues/102), it's stated that you have to configure a backend in such a way (as an example if you want to...
I'm not sure if this was the intended use-case. But if I have a layout that defines slot, and my app returns something like: `` And /some/other/place returns the url...
We ran into an issue at Tes where a service responded with a 302, and compoxure served a default `cache-control` header instead of the header the service responded with. -...
We were experiencing a lot of timeout issues with services and compoxure felt really slow. I just found that upping the UV_THREADPOOL_SIZE variable really speeds things up a lot. I...
Hi, I think about the configuration of the server variables in the configuration. At the moment I have to configure a variable for each service I want to use in...
My web app doesn't work when I run it through compoxure and I found out it is because the Javascript is changed. I tried changing the hogan delimiters from `{{...
For different backends I have definded JS-functions. This functions are called with two parameters: ``` javascript req.backend = _.find(config.backend, function(server) { if (server.pattern) { return new RegExp(server.pattern).test(req.url); } if (server.fn)...
This allows the backend config block to be an object, where the key is equivalent to the `name` property that used to be in each array item. This allows us...
The implementation is similiar to the optionsTransformer. At the moment a unit test is missing for this feature. I'll commit later. The function serverInterrorgator should return a valid configuration of...