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

@nage-api/integrations-recaptcha

v1.0.0-beta.4

Published

Typed reCAPTCHA verification for @nage-api — secret in the body, POST, no TLS downgrade

Readme

@nage-api/integrations-recaptcha

Typed reCAPTCHA verification (PLAN.md §8, §12: "fix TLS, reCAPTCHA key/POST").

The legacy integration got three things wrong, and each one leaves a captcha looking like it works while providing no protection:

  1. it read the secret from RECAPTCHA_SECRET_KET (§2.4), a variable nothing sets, so no usable secret ever went up the wire. Google answers invalid-input-secret; code that only checks success sees every verification fail, and code that ignores the response sees every one pass.
  2. it was a GET with the secret in the query string — writing a long-lived credential into every access log and proxy log on the path.
  3. TLS verification was off across the integration libraries (§5.2), so the answer could come from anyone in the middle.

This package POSTs the secret in a form body, over TLS, to a URL that is not configurable — no deployment can point it somewhere plaintext.

import { ValidationError } from '@nage-api/core';
import { RecaptchaVerifier } from '@nage-api/integrations-recaptcha';

// The reader's validated environment. The name matters: the legacy library read
// `RECAPTCHA_SECRET_KET`, so it always got `undefined` and every verification
// failed the same way a wrong secret does.
declare const env: { readonly RECAPTCHA_SECRET_KEY: string };
// Off the request: the token the widget produced, and the caller's address.
declare const token: string;
declare const remoteIp: string;

const verifier = new RecaptchaVerifier({
  secretKey: env.RECAPTCHA_SECRET_KEY,
  minimumScore: 0.5,
  allowedHostnames: ['example.com'],
});

const result = await verifier.assertHuman({ token, action: 'login', remoteIp });
if (!result.success) throw new ValidationError({ message: 'Captcha failed.' });

The decision lives here

verify returns what Google said. assertHuman decides — score threshold, action match, hostname allow-list — because a caller that only checks success has a v3 captcha that passes every bot scoring 0.1, and a token minted on the login page and replayed against the payment page is a real and cheap attack.

A failed captcha is a return value, not an exception: failing is the expected outcome for a bot. Only an unreachable Google raises.

Anything unparseable reads as not verified. A response this code cannot understand must never count as a pass — that is the difference between a captcha and a decoration.

The constructor rejects a key containing markup, which is what a site key pasted out of a browser snippet looks like. It cannot tell a site key from a secret otherwise: both are public-looking strings of the same shape.

Not yet implemented

  • reCAPTCHA Enterprise, which has a different endpoint and an API key.
  • hCaptcha and Turnstile, which have compatible-enough shapes to sit behind one port later.