dripfeed 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -9,7 +9,9 @@ Soak test your API. One request every few seconds, for hours. Logs every failure
|
|
|
9
9
|
[](https://nodejs.org)
|
|
10
10
|
[](https://bun.sh)
|
|
11
11
|
|
|
12
|
-
**dripfeed**
|
|
12
|
+
**dripfeed** sends HTTP requests to your endpoints at regular intervals (every 1 to 30 seconds) and logs every response to a local SQLite database. Run it for hours or days to catch intermittent failures, latency degradation, memory leaks, resource exhaustion, and silent outages that load tests and uptime pings miss.
|
|
13
|
+
|
|
14
|
+
This is **soak testing** (also called endurance testing): sustained, low-volume traffic over extended periods to evaluate stability and reliability. It surfaces problems that only appear under real-world conditions, like performance degradation over time, connection pool exhaustion, and errors that happen once every thousand requests.
|
|
13
15
|
|
|
14
16
|
## When to use dripfeed
|
|
15
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dripfeed",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Soak test CLI for APIs. Hits endpoints at intervals for hours, logs results to SQLite, fails CI on threshold breaches.",
|
|
6
6
|
"bin": {
|
|
@@ -62,7 +62,14 @@
|
|
|
62
62
|
"latency-monitor",
|
|
63
63
|
"cli",
|
|
64
64
|
"devops",
|
|
65
|
-
"ci-cd"
|
|
65
|
+
"ci-cd",
|
|
66
|
+
"performance-testing",
|
|
67
|
+
"endurance-testing",
|
|
68
|
+
"stability-testing",
|
|
69
|
+
"memory-leak-detection",
|
|
70
|
+
"resource-exhaustion",
|
|
71
|
+
"latency-degradation",
|
|
72
|
+
"http-client"
|
|
66
73
|
],
|
|
67
74
|
"scripts": {
|
|
68
75
|
"build": "tsdown",
|