api-turnstile 0.1.4 → 0.1.5
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 +8 -3
- package/package.json +16 -14
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# API Turnstile — CAPTCHA-Free API Bot Protection & Abuse Prevention
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
<img src="https://sentinel.risksignal.name.ng/sentinel-logo.png" alt="Sentinel Logo" width="120" />
|
|
@@ -13,9 +13,14 @@
|
|
|
13
13
|
|
|
14
14
|
---
|
|
15
15
|
|
|
16
|
-
**
|
|
16
|
+
> **CAPTCHA-free API bot protection for Node.js and serverless APIs.**
|
|
17
|
+
> **Block bots, scripts, credential stuffing, and automation attacks — without rate limits or CAPTCHAs.**
|
|
18
|
+
> **API Turnstile is a Cloudflare Turnstile alternative built specifically for APIs.**
|
|
17
19
|
|
|
18
|
-
|
|
20
|
+
## What Is API Turnstile?
|
|
21
|
+
|
|
22
|
+
API Turnstile is an API bot protection and abuse prevention middleware for Node.js, Express, Next.js, Bun, and serverless environments.
|
|
23
|
+
It blocks automated attacks such as credential stuffing, fake account creation, payment fraud, and API scraping — without CAPTCHAs or browser JavaScript.
|
|
19
24
|
|
|
20
25
|
## 🚀 Key Features
|
|
21
26
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "api-turnstile",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.5",
|
|
4
|
+
"description": "CAPTCHA-free API bot protection and abuse prevention middleware for Node.js, Express, Next.js, and serverless APIs.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"bin": {
|
|
@@ -14,17 +14,19 @@
|
|
|
14
14
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
|
-
"api",
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
17
|
+
"api security",
|
|
18
|
+
"api bot protection",
|
|
19
|
+
"api abuse prevention",
|
|
20
|
+
"anti bot",
|
|
21
|
+
"bot protection",
|
|
22
|
+
"captcha free",
|
|
23
|
+
"cloudflare turnstile alternative",
|
|
24
|
+
"credential stuffing",
|
|
25
|
+
"signup fraud",
|
|
26
|
+
"rate limiting alternative",
|
|
27
|
+
"express middleware",
|
|
28
|
+
"nextjs api",
|
|
29
|
+
"serverless security"
|
|
28
30
|
],
|
|
29
31
|
"author": "Sentinel Security",
|
|
30
32
|
"license": "MIT",
|
|
@@ -62,4 +64,4 @@
|
|
|
62
64
|
"engines": {
|
|
63
65
|
"node": ">=18.0.0"
|
|
64
66
|
}
|
|
65
|
-
}
|
|
67
|
+
}
|