Skip to content

Commit 4f76a58

Browse files
authored
docs: add minimal README to each plugin pointing at keryxjs.com (#483)
1 parent b4ae599 commit 4f76a58

6 files changed

Lines changed: 24 additions & 6 deletions

File tree

packages/plugins/csrf/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# @keryxjs/csrf
2+
3+
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.
4+
5+
For installation, configuration, and usage, see the docs: **https://keryxjs.com/plugins/csrf**

packages/plugins/csrf/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@keryxjs/csrf",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"module": "index.ts",
55
"type": "module",
66
"license": "MIT",
@@ -26,7 +26,8 @@
2626
"actions/",
2727
"middleware/",
2828
"util/",
29-
"index.ts"
29+
"index.ts",
30+
"README.md"
3031
],
3132
"exports": {
3233
".": "./index.ts"
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# @keryxjs/resque-admin
2+
3+
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.
4+
5+
For installation, configuration, and usage, see the docs: **https://keryxjs.com/plugins/resque-admin**

packages/plugins/resque-admin/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@keryxjs/resque-admin",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"module": "index.ts",
55
"type": "module",
66
"license": "MIT",
@@ -29,7 +29,8 @@
2929
"middleware/",
3030
"templates/",
3131
"index.ts",
32-
"LICENSE"
32+
"LICENSE",
33+
"README.md"
3334
],
3435
"exports": {
3536
".": "./index.ts"

packages/plugins/tracing/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# @keryxjs/tracing
2+
3+
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.
4+
5+
For installation, configuration, and usage, see the docs: **https://keryxjs.com/plugins/tracing**

packages/plugins/tracing/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@keryxjs/tracing",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"module": "index.ts",
55
"type": "module",
66
"license": "MIT",
@@ -27,7 +27,8 @@
2727
"files": [
2828
"index.ts",
2929
"initializer.ts",
30-
"tsconfig.json"
30+
"tsconfig.json",
31+
"README.md"
3132
],
3233
"exports": {
3334
".": "./index.ts"

0 commit comments

Comments
 (0)