Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/plugins/csrf/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# @keryxjs/csrf

CSRF protection middleware plugin for [Keryx](https://keryxjs.com). It issues per-session tokens via a `GET /csrf-token` endpoint and validates them on state-changing actions you opt in to protect.

For installation, configuration, and usage, see the docs: **https://keryxjs.com/plugins/csrf**
5 changes: 3 additions & 2 deletions packages/plugins/csrf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@keryxjs/csrf",
"version": "0.1.2",
"version": "0.1.3",
"module": "index.ts",
"type": "module",
"license": "MIT",
Expand All @@ -26,7 +26,8 @@
"actions/",
"middleware/",
"util/",
"index.ts"
"index.ts",
"README.md"
],
"exports": {
".": "./index.ts"
Expand Down
5 changes: 5 additions & 0 deletions packages/plugins/resque-admin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# @keryxjs/resque-admin

A password-protected web dashboard and API for monitoring Redis, Resque queues, workers, failed jobs, and locks in a [Keryx](https://keryxjs.com) application — a modern `resque-web` for Keryx.

For installation, configuration, and usage, see the docs: **https://keryxjs.com/plugins/resque-admin**
5 changes: 3 additions & 2 deletions packages/plugins/resque-admin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@keryxjs/resque-admin",
"version": "0.1.3",
"version": "0.1.4",
"module": "index.ts",
"type": "module",
"license": "MIT",
Expand Down Expand Up @@ -29,7 +29,8 @@
"middleware/",
"templates/",
"index.ts",
"LICENSE"
"LICENSE",
"README.md"
],
"exports": {
".": "./index.ts"
Expand Down
5 changes: 5 additions & 0 deletions packages/plugins/tracing/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# @keryxjs/tracing

OpenTelemetry distributed tracing plugin for [Keryx](https://keryxjs.com). It emits OTLP spans for HTTP requests, action executions, background tasks, Redis commands, and Drizzle DB queries, and propagates W3C trace context across service boundaries.

For installation, configuration, and usage, see the docs: **https://keryxjs.com/plugins/tracing**
5 changes: 3 additions & 2 deletions packages/plugins/tracing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@keryxjs/tracing",
"version": "0.3.2",
"version": "0.3.3",
"module": "index.ts",
"type": "module",
"license": "MIT",
Expand All @@ -27,7 +27,8 @@
"files": [
"index.ts",
"initializer.ts",
"tsconfig.json"
"tsconfig.json",
"README.md"
],
"exports": {
".": "./index.ts"
Expand Down
Loading