@arcis/node 1.6.3 → 1.6.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 +4 -4
- package/dist/astro/index.js.map +1 -1
- package/dist/astro/index.mjs.map +1 -1
- package/dist/bun/index.js.map +1 -1
- package/dist/bun/index.mjs.map +1 -1
- package/dist/core/constants.d.ts +1 -1
- package/dist/core/constants.d.ts.map +1 -1
- package/dist/core/index.js +51 -5
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +51 -5
- package/dist/core/index.mjs.map +1 -1
- package/dist/fastify/index.js.map +1 -1
- package/dist/fastify/index.mjs.map +1 -1
- package/dist/hono/index.js.map +1 -1
- package/dist/hono/index.mjs.map +1 -1
- package/dist/index.js +54 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +54 -7
- package/dist/index.mjs.map +1 -1
- package/dist/koa/index.js.map +1 -1
- package/dist/koa/index.mjs.map +1 -1
- package/dist/logging/index.js.map +1 -1
- package/dist/logging/index.mjs.map +1 -1
- package/dist/middleware/index.js +54 -7
- package/dist/middleware/index.js.map +1 -1
- package/dist/middleware/index.mjs +54 -7
- package/dist/middleware/index.mjs.map +1 -1
- package/dist/nestjs/index.js +54 -7
- package/dist/nestjs/index.js.map +1 -1
- package/dist/nestjs/index.mjs +54 -7
- package/dist/nestjs/index.mjs.map +1 -1
- package/dist/nextjs/index.js.map +1 -1
- package/dist/nextjs/index.mjs.map +1 -1
- package/dist/nuxt/index.js.map +1 -1
- package/dist/nuxt/index.mjs.map +1 -1
- package/dist/sanitizers/index.js +54 -7
- package/dist/sanitizers/index.js.map +1 -1
- package/dist/sanitizers/index.mjs +54 -7
- package/dist/sanitizers/index.mjs.map +1 -1
- package/dist/sanitizers/ldap.d.ts +13 -1
- package/dist/sanitizers/ldap.d.ts.map +1 -1
- package/dist/stores/index.js.map +1 -1
- package/dist/stores/index.mjs.map +1 -1
- package/dist/sveltekit/index.js.map +1 -1
- package/dist/sveltekit/index.mjs.map +1 -1
- package/dist/validation/index.js +51 -5
- package/dist/validation/index.js.map +1 -1
- package/dist/validation/index.mjs +51 -5
- package/dist/validation/index.mjs.map +1 -1
- package/package.json +9 -9
- package/scripts/postinstall.cjs +1 -1
package/README.md
CHANGED
|
@@ -19,9 +19,9 @@ What `arcis({ block: true })` actually wires into the request path: XSS, SQL inj
|
|
|
19
19
|
|
|
20
20
|
Available as opt-in helpers (not auto-wired into `arcis()`): bot detection (695-pattern corpus, `botProtection()`), per-IP correlation window (`new CorrelationWindow(...)`), HPP guard (`hppProtection()`), CSRF (`csrfProtection()`), V32 toolcall-injection signatures (`detectPromptInjection`), V33 deserialization markers (`detectDeserialization`), V34 GraphQL alias bomb / fragment cycle (`graphqlGuard`), SSRF URL validation (`validateUrl`). Compose as needed.
|
|
21
21
|
|
|
22
|
-
**Docs**: [Quickstart](https://
|
|
22
|
+
**Docs**: [Quickstart](https://arcis-website.pages.dev/documentation/getting-started.html) · [Detector reference](https://arcis-website.pages.dev/documentation/detectors/) · [Framework adapters](https://arcis-website.pages.dev/documentation/frameworks.html) · [Why Arcis](https://arcis-website.pages.dev/documentation/why-arcis.html) · [Release notes](https://arcis-website.pages.dev/documentation/release-notes.html)
|
|
23
23
|
|
|
24
|
-
**Part of the [Arcis](https://github.com/
|
|
24
|
+
**Part of the [Arcis](https://github.com/getarcis/arcis) ecosystem.** Node + Python + Go SDKs at full parity from one shared specification. **2,116+ Node tests · 1,688+ Python · 483+ Go.** All passing in CI on every PR.
|
|
25
25
|
|
|
26
26
|
## Framework support
|
|
27
27
|
|
|
@@ -63,7 +63,7 @@ Available as opt-in helpers (not auto-wired into `arcis()`): bot detection (695-
|
|
|
63
63
|
|
|
64
64
|
- **Detect-and-block middleware** — opt in with `arcis({ block: true })`. Returns 403 + tags telemetry on attack-pattern match instead of silently sanitizing.
|
|
65
65
|
- **Telemetry queue cap** — sustained dashboard outage no longer OOMs the worker. Drop-oldest semantics, optional `onQueueOverflow` callback.
|
|
66
|
-
- See the full release history at [
|
|
66
|
+
- See the full release history at [arcis-website.pages.dev/changelog.html](https://arcis-website.pages.dev/changelog.html).
|
|
67
67
|
|
|
68
68
|
## Installation
|
|
69
69
|
|
|
@@ -223,7 +223,7 @@ import { MemoryStore } from '@arcis/node/stores';
|
|
|
223
223
|
|
|
224
224
|
## Documentation
|
|
225
225
|
|
|
226
|
-
Detailed configuration, API reference, Redis setup, and architecture docs are in the [Wiki](https://github.com/
|
|
226
|
+
Detailed configuration, API reference, Redis setup, and architecture docs are in the [Wiki](https://github.com/getarcis/arcis/wiki).
|
|
227
227
|
|
|
228
228
|
## Contributing
|
|
229
229
|
|