npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@chrono-os/security-hardening

v0.1.0

Published

Hardening defaults pra apps Fastify do ecossistema Chrono — Helmet + CSP estrito + CORS mobile-ready + rate-limit + cookies seguros + HMAC helpers com timingSafeEqual. Defense in depth + LGPD-compliant + mobile-ready (Capacitor/Ionic/Expo)

Readme

@chrono-os/security-hardening

Defaults seguros pra apps Fastify do ecossistema Chrono. Defense in depth + LGPD-compliant + mobile-ready (Capacitor/Ionic/Expo).

Status

🆕 0.1.0 — 2026-05-26 — pré-publicação. Aguardando NPM_TOKEN no repo GitHub.

O que oferece

  • buildHelmetConfig(opts) — Helmet com HSTS preload + X-Frame DENY + nosniff + Referrer-Policy strict + Permissions-Policy restritiva
  • buildCspConfig(opts) — Content-Security-Policy estrito (default-src 'self', sem unsafe-inline em scripts)
  • buildCorsConfig(opts) — CORS mobile-ready (Capacitor/Ionic/Expo) + web origins + credentials
  • buildRateLimitConfig(opts) — rate-limit 100/min anônimo, 200/min autenticado, com tier por endpoint
  • buildSecureCookieAttrs(env) — cookie attrs seguros (__Host- + HttpOnly + Secure em prod + SameSite=Lax)
  • hmacSign/Verify + hmacSignToken/VerifyToken — HMAC-SHA256 com comparação constant-time
  • Constantes: MOBILE_CORS_ORIGINS, EXPO_DEV_ORIGINS, BODY_LIMITS, RATE_LIMITS

Install

yarn add @chrono-os/security-hardening @fastify/helmet @fastify/cors @fastify/rate-limit

Uso

import Fastify from 'fastify'
import fastifyHelmet from '@fastify/helmet'
import fastifyCors from '@fastify/cors'
import fastifyRateLimit from '@fastify/rate-limit'
import {
  buildHelmetConfig,
  buildCspConfig,
  buildCorsConfig,
  buildRateLimitConfig,
  SENSITIVE_RATE_LIMIT,
} from '@chrono-os/security-hardening/fastify'

const env = process.env.NODE_ENV as 'production' | 'development'

const app = Fastify({
  logger: true,
  bodyLimit: 10 * 1024 * 1024, // 10MB
})

await app.register(fastifyHelmet, {
  ...buildHelmetConfig({ env }),
  contentSecurityPolicy: buildCspConfig({
    env,
    apiUrl: 'https://api.meusite.com.br',
    additionalConnectSrc: ['https://api.mercadopago.com'],
    additionalFormAction: ['https://www.mercadopago.com'],
  }),
})

await app.register(fastifyCors, buildCorsConfig({
  env,
  webOrigins: ['https://meusite.com.br'],
  enableMobile: true, // Capacitor/Ionic schemes
}))

await app.register(fastifyRateLimit, buildRateLimitConfig({}))

// Override por endpoint sensível
app.post('/auth/sign-in', {
  config: { rateLimit: SENSITIVE_RATE_LIMIT },
}, async (req, reply) => { /* ... */ })

Bootstrap mode

Sem @fastify/helmet/cors/rate-limit instalados (peer deps optional), o pacote ainda exporta helpers genéricos (HMAC, cookies, constants). Os build*Config retornam objetos que você passa direto pros plugins quando instalá-los.

API

Genérico (@chrono-os/security-hardening)

  • hmacSign(payload, secret) → string hex
  • hmacVerify(payload, signature, secret) → boolean (constant-time)
  • hmacSignToken(payload, secret) → token compacto <payload>.<sig> base64url
  • hmacVerifyToken(token, secret){ ok: true, payload } | { ok: false, reason }
  • buildSecureCookieAttrs({ env, sameSite?, maxAge? })
  • prefixCookieName(name, env)__Host-${name} em prod
  • MOBILE_CORS_ORIGINS, EXPO_DEV_ORIGINS, BODY_LIMITS, RATE_LIMITS

Fastify (@chrono-os/security-hardening/fastify)

  • buildHelmetConfig({ env, frameAncestors?, permissionsPolicy? })
  • buildPermissionsPolicyHeader(opts?)
  • buildCspConfig({ env, apiUrl?, additionalConnectSrc?, nonces?, additionalScriptSrc?, additionalFormAction?, additionalImgSrc? })
  • buildCorsConfig({ env, webOrigins, enableMobile?, additionalOrigins?, credentials?, exposedHeaders? })
  • buildRateLimitConfig({ max?, timeWindow?, keyGenerator?, skipOnError?, redis? })
  • SENSITIVE_RATE_LIMIT, FORM_SUBMIT_RATE_LIMIT, AUTHENTICATED_RATE_LIMIT

Mobile-ready

CORS aceita schemes de apps mobile: capacitor://localhost, ionic://localhost, http://localhost (Capacitor Android), expo://* (Expo).

Rate-limit por bearer token (não só IP) — apps mobile compartilham IP entre usuários (NAT carrier).

LGPD

  • Cookies seguros (__Host- + HttpOnly + Secure em prod) protegem session token de XSS
  • CSP estrito reduz ataque XSS que poderia roubar dados pessoais
  • Pacote complementar: @chrono-os/observability (Pino redaction)
  • Pacote complementar: @chrono-os/admin-audit (audit log de mutações)

Versionamento

SemVer. Releases via tag v* em SugarHoneyIceTea/security-hardening. Ver CHANGELOG.md.

Security

Política em SECURITY.md. Reportar vulnerabilidades por e-mail.