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

@ingram-tech/nk-forms

v0.4.1

Published

Contact/signup form pipeline for Next.js sites — invisible bot protection (honeypot + signed timing token + Vercel BotID), validation, and escaped email notifications in one handler.

Readme

@ingram-tech/nk-forms

A submission pipeline for public contact and signup forms: bot protection, validation, a rate-limit hook, and escaped email notifications behind one server handler and one client hook.

It owns the bot-protection layers and builds on @ingram-tech/nk-email for sending and escapeHtml. It covers the "validate a public submission and notify a human / subscribe an address" shape, and does not try to own Stripe checkout or auth flows. For bot detection somewhere that isn't a public form, call verifyHuman or checkBot directly (see Bot protection).

What it gives you

  • createFormsHandler(registry, options) — one { GET, POST } for every form on the site, mounted at /internal/forms/[form]. Each entry is a defineForm({ schema, onSubmit }); the name becomes the URL, the log label and the rate-limit namespace. Adding a form is adding an entry.
  • handleFormSubmission(request, options) — the pipeline under it: rate-limit → parse → bot gate → validate → deliver → uniform response. Bot hits and honest submissions return the same 200 body, so a bot never learns it was dropped. Returns a web-standard Response (no next dependency).
  • renderNotificationEmail({ heading, fields, message, footer }) — builds { html, text } with every value escaped.
  • mintFormToken() — the GET half, for a standalone route.
  • useFormSubmit(formEndpoint("contact")) / re-exported useBotProtection + HoneypotInput from @ingram-tech/nk-forms/react.

You still own your schema (a Zod schema, accepted structurally, so no Zod version pin), your fields and branding, and your delivery (onSubmit).

Where forms live

Forms are not part of the site's API. /api/… is the public contract — versioned, documented, something a client could build on. A contact form's POST has one consumer (one React component), no schema promise and no version, so it goes under /internal/… with the rest of the plumbing the app owns:

/internal/forms/<name>    GET mints the timing token · POST submits

Unlike the worker and webhook routes that share the prefix, forms are called by anonymous browsers. They are gated by the bot layers and your rate limiter, not by a shared secret — do not add one.

Route

One file registers every form:

// app/internal/forms/[form]/route.ts
import {
	createFormsHandler,
	defineForm,
	renderNotificationEmail,
} from "@ingram-tech/nk-forms";
import { fromAddress, sendEmail } from "@ingram-tech/nk-email";
import { z } from "zod";

const contact = defineForm({
	schema: z.object({
		name: z.string().trim().min(1).max(200),
		email: z.string().trim().email().max(320),
		message: z.string().trim().min(1).max(5000),
	}),
	onSubmit: async ({ name, email, message }) => {
		const { html, text } = renderNotificationEmail({
			heading: "New contact form submission",
			fields: [
				{ label: "Name", value: name },
				{ label: "Email", value: email },
			],
			message,
			footer: "Sent from the acme.test contact form.",
		});
		await sendEmail({
			to: "[email protected]",
			from: fromAddress("Acme"),
			replyTo: email,
			subject: `[Contact] ${name}`,
			html,
			text,
		});
	},
});

const newsletter = defineForm({
	schema: z.object({ email: z.string().trim().email().max(320) }),
	rateLimit: { limit: 3, windowMs: 60 * 60 * 1000 },
	onSubmit: ({ email }) => subscribe(email),
});

export const { GET, POST } = createFormsHandler(
	{ contact, newsletter },
	{
		// nk-forms owns no store. You get the form name, the request and the
		// budget (default 5 per 10 minutes) and answer with { ok, retryAfterMs }.
		rateLimit: ({ request, form, limit, windowMs }) =>
			checkRateLimit(`${form}:${clientKey(request)}`, limit, windowMs),
		logger,
	},
);

defineForm exists so each entry's onSubmit is typed from its own schema. Options on an entry (rateLimit, verify) override the handler-wide ones.

For a single form that does not fit the registry, the pieces are exported on their own: export { mintFormToken as GET } and export const POST = (req) => handleFormSubmission(req, { schema, onSubmit }).

Client

"use client";
import { formEndpoint, HoneypotInput, useFormSubmit } from "@ingram-tech/nk-forms/react";

export function ContactForm() {
	const { honeypotRef, submit, status, error } = useFormSubmit(
		formEndpoint("contact"),
	);

	return (
		<form
			onSubmit={async (e) => {
				e.preventDefault();
				const data = new FormData(e.currentTarget);
				await submit(Object.fromEntries(data));
			}}
		>
			<HoneypotInput inputRef={honeypotRef} />
			{/* your fields */}
			<button disabled={status === "submitting"}>Send</button>
			{status === "success" && <p>Thanks — we'll be in touch.</p>}
			{error && <p role="alert">{error}</p>}
		</form>
	);
}

Bot protection

Three invisible layers, no CAPTCHA, run cheapest-first by verifyHuman (which handleFormSubmission calls for you):

  1. Honeypot — a hidden field real users never fill; bots do. Zero-dep.
  2. Signed timing token — an HMAC-signed timestamp; rejects submissions that arrive implausibly fast or stale. Zero-dep (node:crypto).
  3. Vercel BotID — optional, invisible server check. Degrades to a no-op when botid isn't installed or you're off Vercel.

A failure means silently drop: respond 200 without acting, so spam tools never learn which layer caught them and a real user never sees an error.

Using the layers directly

For bot detection outside the form pipeline, import them from the root:

import { checkBot, createFormToken, verifyHuman } from "@ingram-tech/nk-forms";

verifyHuman({ formData }) takes a FormData or a plain object, an optional timing window ({ minMs, maxMs }), and botid: false to skip layer 3. checkBot() is layer 3 on its own.

Server-rendered forms

For a plain <form method="post"> rather than a JSON POST, mint the token server-side and drop in <HoneypotField>:

import { createFormToken } from "@ingram-tech/nk-forms";
import { HoneypotField } from "@ingram-tech/nk-forms/honeypot";

// The page that mints the token MUST render per-request. On a statically
// prerendered (or ISR/cached) page the timestamp is the BUILD time: once the
// deploy is older than the token window (default 1h), every real submission
// verifies as "expired" and is silently dropped. The same rule applies to the
// GET that `mintFormToken` backs.
export const dynamic = "force-dynamic";

export default function ContactPage() {
	const token = createFormToken();
	return (
		<form action="/internal/forms/contact" method="post">
			{/* ...your real fields... */}
			<HoneypotField token={token} />
			<button type="submit">Send</button>
		</form>
	);
}

The honeypot field defaults to a name browsers and password managers won't autofill (filling it would falsely flag real users). If that default collides with a real field in your form, override it on both sides — they must match:

<HoneypotField token={token} field="subject_trap" />
// ...and on the server:
await verifyHuman({ formData, honeypotField: "subject_trap" });

Vercel BotID wiring (per app, layer 3 only)

// next.config.ts
import { withBotId } from "botid/next/config";
export default withBotId({ /* your config */ });
// instrumentation-client.ts
import { initBotId } from "botid/client/core";
initBotId({ protect: [{ path: "/internal/forms/*", method: "POST" }] });

Environment

BOT_PROTECTION_SECRET keys the signed timing token (e.g. openssl rand -hex 32). Without it that layer is simply disabled; honeypot + BotID still run. To rotate, set a comma-separated list (new,old): tokens sign with the first secret and verify against all of them, so in-flight forms keep working; drop the old one once the token window (1h) has passed.

Mail transport env comes from @ingram-tech/nk-email.