@capriza/http-utils
Advanced tools
Comparing version 0.2.5-beta.5 to 0.2.5-beta.6
{ | ||
"name": "@capriza/http-utils", | ||
"version": "0.2.5-beta.5", | ||
"version": "0.2.5-beta.6", | ||
"description": "HTTP Request utils that handles, request-response, errors, concurrency, priority and authentication", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -1,1 +0,1 @@ | ||
VERSION=0.2.5-beta.5 | ||
VERSION=0.2.5-beta.6 |
# @capriza/http-utils | ||
## Table Of Contents | ||
- [Overview](#Overview) | ||
- [Installing](#Installing) | ||
- [Instance Configuring](#Instance-Configuring) | ||
- [Overview](#overview) | ||
- [Installing](#installing) | ||
- [Instance Configuring](#instance-configuring) | ||
- [headers](#headers) | ||
@@ -17,7 +17,7 @@ - [timeout](#timeout) | ||
- [maxConcurrent](#maxConcurrent) | ||
- [Instance Methods](#Instance-Methods) | ||
- [Examples](#Examples) | ||
- [Instance Methods](#instance-methods) | ||
- [Examples](#examples) | ||
## Overview | ||
Http requests client is based on[axios](https://www.npmjs.com/package/axios).<br /> | ||
Http requests client based on [axios](https://www.npmjs.com/package/axios).<br /> | ||
The Http-Utils library supports rate limits, concurrent requests, retry requests, request prioritization etc. | ||
@@ -99,3 +99,3 @@ | ||
## Examples | ||
Instance with base URL, 5 http requests allowed every 10 seconds, allowing 3 retries in case of network or server(502, 503) errors. | ||
Instance with base URL, 5 http requests allowed every 10 seconds, allowing 3 retries in case of network or server (502, 503) errors. | ||
``` | ||
@@ -102,0 +102,0 @@ const HttpUtils = require('@capriza/http-utils'); |
32421