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

safe-form

v0.12.2

Published

⚡️ End-to-end type-safety from client to server.

Readme

safe-form

NPM Version Github License NPM Downloads

⚡️ End-to-end type-safety from client to server. Inspired by react-hook-form and next-safe-action.

Features

  • ✅ Ridiculously easy to use
  • ✅ 100% type-safe
  • ✅ Input validation using Standard Schema
  • ✅ Server error handling
  • ✅ Automatic input binding
  • ✅ Native file upload support

Requirements

Install

npm install safe-form

Install a validator separately if your app does not already have one:

npm install zod

Usage

Use the safe-form/server and safe-form/client entrypoints to keep server and client boundaries explicit.

First, define your schema in a separate file, so you can use it both in the form and in the server action. This example uses zod, but safe-form accepts any Standard Schema compatible validator:

schema.ts

import { z } from 'zod'

export const exampleSchema = z.object({
  name: z.string().min(3, 'Name must be at least 3 characters'),
  message: z.string().min(10, 'Message must be at least 10 characters'),
  attachment: z.instanceof(File).nullish()
})

Now, create a server action:

action.ts

'use server'

import { createFormAction, FormActionError } from 'safe-form/server'
import { exampleSchema } from './schema'

export const exampleAction = createFormAction(exampleSchema, async (input) => {
  if (input.attachment && input.attachment.size >= 1024 * 1024 * 10) {
    throw new FormActionError('The maximum file size is 10MB.') // Custom errors! 💜
  }

  return `Hello, ${input.name}! Your message is: ${input.message}.`
})

Finally, create a form as a client component:

form.tsx

'use client'

import { useForm } from 'safe-form/client'
import { exampleAction } from './action'
import { exampleSchema } from './schema'

export const HelloForm = () => {
  const { connect, bindField, isPending, error, fieldErrors, response } =
    useForm({
      action: exampleAction,
      schema: exampleSchema
    })

  return (
    <form {...connect()}>
      <label htmlFor='name'>Name</label>
      <input {...bindField('name')} />
      {fieldErrors.name && <pre>{fieldErrors.name.first}</pre>}
      <br />
      <label htmlFor='message'>Message</label>
      <textarea {...bindField('message')} />
      {fieldErrors.message && <pre>{fieldErrors.message.first}</pre>}
      <br />
      <label htmlFor='attachment'>Attachment (optional)</label>
      <input type='file' {...bindField('attachment')} />
      {fieldErrors.attachment && <pre>{fieldErrors.attachment.first}</pre>}
      <br />
      <button type='submit' disabled={isPending}>
        Submit
      </button>
      <br />
      {error && <pre>{error}</pre>}
      {response && <div>{response}</div>}
    </form>
  )
}

Progressive enhancement

connect() wires the form both ways. With JavaScript enabled, values are serialized with rich types: date inputs produce Date objects, checkboxes produce booleans, and number inputs produce numbers. Without JavaScript, the browser submits the native FormData as a fallback, so every value reaches the server action as a plain string (e.g. "2022-01-01" for dates, "on" or absent for checkboxes).

If you rely on the no-JS fallback, make your schema accept both representations. With zod, for example:

export const exampleSchema = z.object({
  birthDate: z.coerce.date(),
  subscribed: z.coerce.boolean().optional().default(false)
})

Notes

  • Date inputs follow the valueAsDate convention: values are interpreted as midnight UTC, both when reading from and writing to the input.
  • Validation issues without a path (e.g. object-level refinements) are exposed separately as rootError (also passed as the third argument to onError), so fieldErrors stays keyed strictly by your schema's fields. rootError only refreshes on full validation (submit(), validate() or reset()) — field-level validation can't tell whether an object-level rule passes.
  • The displayed error, fieldErrors and rootError always come from a single validation run. Server-side errors are shown until the next client-side validation run (validate(), a schema-backed validateField() — including a validating blur/change — or reset()) supersedes them; a new server response takes precedence again.
  • submit() resolves once validation and the onSubmit callback finish; the server action itself runs in a transition. Use onSuccess/onError (or the returned response/error) to react to the action result.

License

MIT