summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPhilipp Tanlak <philipp.tanlak@gmail.com>2024-02-07 23:20:55 +0100
committerGitHub <noreply@github.com>2024-02-07 23:20:55 +0100
commit0d6494d164cc490d62473eae0fbd79d5573bb380 (patch)
tree7a4586e89920b6abd4f6c7724f42634d66cf5f68 /README.md
parent60139e7de275473332b560b4139a6a01c3da184c (diff)
Add retry module and change rate to requests per minute (#37)v0.7.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index fcbbafa..80b21af 100644
--- a/README.md
+++ b/README.md
@@ -175,8 +175,11 @@ export const config = {
// Specify the blocked URLs as regex. (default = none)
blockedURLs: ["/admin"],
- // Specify the rate in requests per second. (default = no rate limit)
- rate: 100,
+ // Specify the rate in requests per minute. (default = no rate limit)
+ rate: 60,
+
+ // Specify the number of concurrent requests. (default = no limit)
+ concurrency: 1,
// Specify a single HTTP(S) proxy URL. (default = no proxy)
proxy: "http://someproxy.com:8043",