angular-http-batcher
angular-http-batcher copied to clipboard
Enables HTTP batch request with AngularJS
The [npm package](https://www.npmjs.com/package/angular-http-batcher) version is a bit behind the latest version on github, which has a few bug fixes that I would like to consume. Can you bump the npm...
We are facing some issues. While calling the service url https:// endpoint it gets converted automatically to http:// and therefore getting 404 error.
Addresses issue #40. The implementation is to my current understanding of the `angular-http-batcher` interactions with Angular's `$http` and `$httpBackend` services. The implementation may need to be updated based on the...
As far as I have been able to find, [batch-request](https://www.npmjs.com/package/batch-request) is one of the most full-featured batch request libraries available for Node.js. The format for the request looks like ```javascript...
I keep getting a digest error when this function runs. I added a timeout to make sure the digest is completed prior to running the callback function. Would you consider...
I'm overriding the send function to use oboe to allow streaming processing of batches as they are returned from the server. This allows me to override the base send function...
Update main file as it has issues being imported via webpack module loader.
Hi We want to start and use your framework. Our server side is Java (tomcat), so we need to write ourselves the processing of the multipart request, and assemble the...
We are using [grape-batch](https://github.com/c4mprod/grape-batch) to handle batch requests in the server. a POST http request is expected with a body like: ``` { requests: [ { method: 'GET', path: '/api/v1/users'...