follow us
AxiomNode

Search AxiomNode

Articles, projects, and ideas. All in one place.

Type at least two characters to search English content.
AxiomNodeESC
Start a project
Projects

ِAxiomGuard

A modular security toolkit for Node.js and TypeScript applications, providing developers with practical, ready-to-use security building blocks without adding unnecessary complexity to their application architecture.

OpenSource

logo

AxiomGuard is an open-source security toolkit designed to provide practical security building blocks for modern Node.js and TypeScript services.

Instead of rebuilding common security functionality for every project, AxiomGuard provides independent modules that can be used individually or together as a complete security toolkit.

It includes tools for generating and verifying API keys, validating signed webhooks, managing CORS and CSRF protection, rate limiting, creating secure cookies, validating environment variables, redacting secrets and sensitive information from logs, and performing safer outbound requests with SSRF-aware protections.

AxiomGuard also includes a Secret Scanner that can be used through the CLI to scan repositories for exposed credentials and sensitive secrets, with support for JSON and SARIF output as well as GitHub Actions integration.

The core is designed to remain framework-neutral, with ready-to-use integrations for Express, Fastify, and Hono, along with Redis-backed stores for distributed systems.

The goal of AxiomGuard is simple: make common application security practices easier and more accessible to developers while keeping each security component focused, modular, and usable according to the needs of the project.

Project README

AxiomGuard Security building blocks for modern Node.js and TypeScript services. Zero runtime dependencies · framework-neutral core · focused security primitives

![npm version](https://www.npmjs.com/package/@axiomnode-lab/guard) ![npm downloads](https://www.npmjs.com/package/@axiomnode-lab/guard) ![Node.js](https://nodejs.org/) ![License](LICENSE)

AxiomGuard is a modular security toolkit for backend services. It provides focused primitives for signed webhooks, API keys, browser request policy, idempotency, SSRF-aware outbound requests, rate limiting, secure cookies, CSRF, CORS, security headers, environment validation, secret-safe logging and repository scanning.

Use the complete package when convenience matters, or import a focused subpath when you only need one control.

Install

Requirements: Node.js 20 or newer. AxiomGuard is published as an ES module.

bash
npm install @axiomnode-lab/guard

Also works with other package managers:

bash
pnpm add @axiomnode-lab/guard
# or
yarn add @axiomnode-lab/guard

Quick start

Secure an Express API

If you already use Express, the adapter is the fastest way to add defensive response headers, CORS handling and an opt-in browser request policy.

ts
import express from 'express';
import { createExpressSecurityMiddleware } from '@axiomnode-lab/guard/adapters/express';

const app = express();

app.use(createExpressSecurityMiddleware({
  cors: {
    origins: ['https://app.example.com'],
    allowCredentials: true,
    allowMethods: ['GET', 'POST', 'PATCH'],
  },
  requestPolicy: {
    allowedOrigins: ['https://app.example.com'],
  },
}));

app.get('/health', (_req, res) => {
  res.json({ ok: true });
});

app.post('/profile', (_req, res) => {
  res.json({ updated: true });
});

app.listen(3000);

With that configuration, ordinary requests receive AxiomGuard's defensive headers, allowed browser origins receive CORS headers, preflight requests are handled automatically, and unsafe browser requests from untrusted origins are rejected.

requestPolicy is a CSRF-oriented browser control. It does not replace authentication or authorization.

Fastify

ts
import Fastify from 'fastify';
import { createFastifySecurityHook } from '@axiomnode-lab/guard/adapters/fastify';

const app = Fastify();

app.addHook('onRequest', createFastifySecurityHook({
  cors: {
    origins: ['https://app.example.com'],
    allowMethods: ['GET', 'POST'],
  },
  requestPolicy: {
    allowedOrigins: ['https://app.example.com'],
  },
}));

Hono

ts
import { Hono } from 'hono';
import { createHonoSecurityMiddleware } from '@axiomnode-lab/guard/adapters/hono';

const app = new Hono();

app.use('*', createHonoSecurityMiddleware({
  cors: {
    origins: ['https://app.example.com'],
    allowMethods: ['GET', 'POST'],
  },
  requestPolicy: {
    allowedOrigins: ['https://app.example.com'],
  },
}));

See [Framework adapters](docs/ADAPTERS.md) for adapter options and Redis-backed integrations.

Use AxiomGuard by goal

GoalImportStart with
Generate and verify API keys@axiomnode-lab/guard/api-keyscreateApiKey, verifyApiKey
Verify signed webhooks@axiomnode-lab/guard/webhooksverifyGitHubWebhookDelivery, verifyStripeWebhook, verifySlackWebhook, verifyMetaWebhook
Protect unsafe browser requests@axiomnode-lab/guard/request-policyevaluateRequestPolicy
Add idempotency claims@axiomnode-lab/guard/idempotencycreateIdempotencyFingerprint, claimIdempotencyKey
Guard outbound URLs and fetches@axiomnode-lab/guard/fetchsafeFetch
Rate-limit requests@axiomnode-lab/guard/rate-limitcheckRateLimit, createRateLimitHeaders
Build CORS policy@axiomnode-lab/guard/corscreateCorsHeaders
Set defensive response headers@axiomnode-lab/guard/headerscreateSecurityHeaders
Create secure cookies@axiomnode-lab/guard/cookiesserializeCookie
Create and verify CSRF tokens@axiomnode-lab/guard/csrfcreateCsrfToken, verifyCsrfToken
Validate environment variables@axiomnode-lab/guard/envrequireEnv
Redact secrets and PII@axiomnode-lab/guard/loggingredactSecrets, maskPII
Scan a repository for secrets@axiomnode-lab/guard/scannerscanSecrets, CLI axiomguard scan

Common recipes

API keys

Generate an opaque API key, return the token once, and store only the identifier and digest.

ts
import { createApiKey, verifyApiKey } from '@axiomnode-lab/guard/api-keys';

const created = createApiKey({ prefix: 'svc' });

// Return created.token to the client once.
// Persist created.id and created.digest in your database.

const accepted = verifyApiKey(presentedToken, created.digest);

if (!accepted) {
  throw new Error('Invalid API key');
}

Generated API keys are high-entropy random credentials. verifyApiKey() compares their SHA-256 digests in constant time; this API is not intended for human passwords.

Signed webhooks with replay protection

Always verify a provider signature against the exact raw request body. Parsing and re-serializing JSON before verification can change the signed bytes.

ts
import {
  MemoryReplayStore,
  verifyGitHubWebhookDelivery,
} from '@axiomnode-lab/guard/webhooks';

const replayStore = new MemoryReplayStore();

const result = await verifyGitHubWebhookDelivery(
  rawBody,
  request.headers['x-hub-signature-256'],
  process.env.GITHUB_WEBHOOK_SECRET!,
  request.headers['x-github-delivery'],
  { replayStore },
);

if (!result.ok) {
  // result.reason is invalid-signature, invalid-delivery, or replay.
  throw new Error(`Rejected webhook: ${result.reason}`);
}

A single-process service can use MemoryReplayStore. Multi-instance deployments should use one of the Redis replay-store adapters so all instances share replay state.

Provider helpers are also available for Stripe, Slack and Meta/WhatsApp signing formats. See [API reference](docs/API.md).

Guarded outbound fetches

Use safeFetch() when a destination can be influenced by a user or external system.

ts
import { safeFetch } from '@axiomnode-lab/guard/fetch';

const response = await safeFetch(userSuppliedUrl, {
  protocols: ['https:'],
  allowedHosts: ['api.example.com'],
  maxRedirects: 2,
  timeoutMs: 5_000,
  headers: {
    accept: 'application/json',
  },
});

const data = await response.json();

The helper validates the initial destination and followed redirects, limits redirect depth, applies a total timeout and strips sensitive credentials when a redirect crosses origins.

It reduces common SSRF mistakes, but it does not replace egress controls or eliminate DNS rebinding/time-of-check-time-of-use risk. See [Safe Fetch](docs/SAFE_FETCH.md).

Idempotent write requests

Bind an idempotency key to the semantics of the request that first claimed it.

ts
import {
  MemoryIdempotencyStore,
  claimIdempotencyKey,
  createIdempotencyFingerprint,
} from '@axiomnode-lab/guard/idempotency';

const store = new MemoryIdempotencyStore();

const fingerprint = createIdempotencyFingerprint({
  method: request.method,
  target: request.url,
  contentType: request.headers['content-type'],
  body: rawBody,
});

const status = await claimIdempotencyKey(
  request.headers['idempotency-key'],
  fingerprint,
  { store, ttlMs: 86_400_000 },
);

switch (status) {
  case 'accepted':
    // Process the operation.
    break;
  case 'replay':
    // Same key and same request semantics.
    break;
  case 'conflict':
    // Same key reused for a different request.
    break;
  case 'capacity':
    // Store is full; fail closed rather than silently evicting a live claim.
    break;
}

The idempotency module stores claim state, not your application response or database transaction result. If you need full response replay, persist that result in application-specific durable storage.

Rate limiting

ts
import {
  MemoryRateLimitStore,
  checkRateLimit,
  createRateLimitHeaders,
} from '@axiomnode-lab/guard/rate-limit';

const store = new MemoryRateLimitStore();

const result = await checkRateLimit(`ip:${clientIp}`, {
  limit: 60,
  windowMs: 60_000,
  store,
});

const headers = createRateLimitHeaders(result, {
  policyName: 'api',
});

if (!result.allowed) {
  // Return HTTP 429 with the generated rate-limit headers.
}

Use a Redis-backed store for distributed or high-volume services.

Environment validation and safe logging

ts
import { requireEnv } from '@axiomnode-lab/guard/env';
import { redactSecrets } from '@axiomnode-lab/guard/logging';

const env = requireEnv({
  PORT: { type: 'port', default: 3000 },
  API_URL: 'url',
  MODE: {
    type: 'string',
    allowed: ['development', 'staging', 'production'],
  },
});

const safeEvent = redactSecrets(event, {
  paths: ['req.headers.x-api-key', 'users.*.profile'],
});

redactSecrets() returns a redacted value without mutating the original object.

Secret scanner CLI

Installing the package exposes the axiomguard command.

bash
npx axiomguard scan .

Useful output modes:

bash
npx axiomguard scan . --json
npx axiomguard scan . --sarif --output axiomguard.sarif
npx axiomguard scan . --write-baseline .axiomguard-baseline.json
npx axiomguard scan . --no-fail

The scanner reports the finding type, file, line and a non-secret fingerprint. It intentionally does not print detected secret values.

See [Scanner](docs/SCANNER.md) and [GitHub Action](docs/GITHUB_ACTION.md).

Import style

The root package re-exports the complete public API:

ts
import {
  createApiKey,
  safeFetch,
  redactSecrets,
} from '@axiomnode-lab/guard';

Focused subpath imports are also supported:

ts
import { createApiKey } from '@axiomnode-lab/guard/api-keys';
import { safeFetch } from '@axiomnode-lab/guard/fetch';
import { redactSecrets } from '@axiomnode-lab/guard/logging';

Subpath imports make the capability being used explicit and are the recommended style in larger services.

Package entry points

ImportPurpose
@axiomnode-lab/guardComplete public API
@axiomnode-lab/guard/api-keysAPI key generation, hashing, verification and masking
@axiomnode-lab/guard/webhooksGeneric and provider-specific webhook verification
@axiomnode-lab/guard/request-policyFetch Metadata and Origin request filtering
@axiomnode-lab/guard/idempotencyIdempotency keys, fingerprints and claim stores
@axiomnode-lab/guard/fetchRedirect-aware guarded outbound fetches
@axiomnode-lab/guard/webURL, DNS, IP and redirect safety helpers
@axiomnode-lab/guard/rate-limitRate limiting and response-header helpers
@axiomnode-lab/guard/cookiesSecure cookie serialization
@axiomnode-lab/guard/corsCORS policy helpers
@axiomnode-lab/guard/csrfSigned CSRF tokens
@axiomnode-lab/guard/headersDefensive headers and CSP helpers
@axiomnode-lab/guard/presetsSecurity-header presets
@axiomnode-lab/guard/envEnvironment validation
@axiomnode-lab/guard/loggingSecret redaction and PII masking
@axiomnode-lab/guard/filesystemSafe paths and filenames
@axiomnode-lab/guard/scannerSecret scanner API and SARIF conversion
@axiomnode-lab/guard/adapters/expressExpress middleware
@axiomnode-lab/guard/adapters/fastifyFastify hook
@axiomnode-lab/guard/adapters/honoHono middleware
@axiomnode-lab/guard/adapters/redisRedis-backed replay, rate-limit and idempotency stores

Security boundaries

AxiomGuard provides security primitives; it is not a replacement for the rest of an application's security architecture. In particular, it does not replace authentication or authorization, a secrets manager, password hashing with Argon2/scrypt/bcrypt, outbound firewalling, durable transaction storage, or application-specific threat modeling.

Read [SECURITY.md](SECURITY.md) for vulnerability reporting and [THREAT_MODEL.md](THREAT_MODEL.md) for design boundaries.

Documentation

  • [API reference](docs/API.md)
  • [API protection](docs/API_PROTECTION.md)
  • [Framework adapters](docs/ADAPTERS.md)
  • [Safe fetch](docs/SAFE_FETCH.md)
  • [Scanner](docs/SCANNER.md)
  • [GitHub Action](docs/GITHUB_ACTION.md)
  • [Security policy](SECURITY.md)
  • [Threat model](THREAT_MODEL.md)
  • [Changelog](CHANGELOG.md)

Contributing

Contributions are welcome. See [CONTRIBUTING.md](CONTRIBUTING.md) before opening a pull request.

For vulnerability reports, follow [SECURITY.md](SECURITY.md) rather than opening a public issue.

License

MIT see [LICENSE](LICENSE).