@joint-ops/hitlimit 1.0.0 → 1.0.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 +1 -1
- package/package.json +15 -3
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
**hitlimit** is a high-performance rate limiting middleware for Node.js applications. Protect your APIs from abuse, prevent brute force attacks, and throttle requests with sub-millisecond overhead. A faster, lighter alternative to express-rate-limit and rate-limiter-flexible.
|
|
12
12
|
|
|
13
|
-
**[Documentation](https://hitlimit.dev)** | **[GitHub](https://github.com/JointOps/hitlimit-monorepo)** | **[npm](https://www.npmjs.com/package/@joint-ops/hitlimit)**
|
|
13
|
+
**[Documentation](https://hitlimit.jointops.dev)** | **[GitHub](https://github.com/JointOps/hitlimit-monorepo)** | **[npm](https://www.npmjs.com/package/@joint-ops/hitlimit)**
|
|
14
14
|
|
|
15
15
|
## Why hitlimit?
|
|
16
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@joint-ops/hitlimit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Fast rate limiting middleware for Express, NestJS & Node.js - API throttling, brute force protection, request limiting",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Shayan M Hussain",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"url": "https://github.com/ShayanHussainSB"
|
|
9
9
|
},
|
|
10
10
|
"license": "MIT",
|
|
11
|
-
"homepage": "https://hitlimit.dev",
|
|
11
|
+
"homepage": "https://hitlimit.jointops.dev",
|
|
12
12
|
"repository": {
|
|
13
13
|
"type": "git",
|
|
14
14
|
"url": "https://github.com/JointOps/hitlimit-monorepo",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"rate-limit",
|
|
22
22
|
"rate-limiter",
|
|
23
23
|
"rate-limiting",
|
|
24
|
+
"ratelimit",
|
|
24
25
|
"express",
|
|
25
26
|
"express-rate-limit",
|
|
26
27
|
"express-middleware",
|
|
@@ -29,6 +30,13 @@
|
|
|
29
30
|
"nestjs-throttler",
|
|
30
31
|
"nestjs-rate-limit",
|
|
31
32
|
"nest-throttler",
|
|
33
|
+
"fastify",
|
|
34
|
+
"fastify-rate-limit",
|
|
35
|
+
"hono",
|
|
36
|
+
"hono-rate-limit",
|
|
37
|
+
"hono-middleware",
|
|
38
|
+
"koa",
|
|
39
|
+
"koa-rate-limit",
|
|
32
40
|
"middleware",
|
|
33
41
|
"throttle",
|
|
34
42
|
"throttling",
|
|
@@ -56,7 +64,11 @@
|
|
|
56
64
|
"express-slow-down",
|
|
57
65
|
"api-security",
|
|
58
66
|
"request-limiter",
|
|
59
|
-
"http-rate-limit"
|
|
67
|
+
"http-rate-limit",
|
|
68
|
+
"fast",
|
|
69
|
+
"lightweight",
|
|
70
|
+
"zero-dependency",
|
|
71
|
+
"esm"
|
|
60
72
|
],
|
|
61
73
|
"type": "module",
|
|
62
74
|
"main": "./dist/index.js",
|