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

@samithahansaka/formless

v2.1.0

Published

Universal form adapter for React - one API for React Hook Form, Formik, and TanStack Form

Readme

@samithahansaka/formless

npm bundle size license

All-in-one package for Formless - Universal form adapter for React.

| Bundle Size | Minified | Gzipped | | ----------- | -------- | ------- | | ESM | 1.05 KB | ~0.5 KB |

This is the recommended way to install Formless. It includes all adapters and utilities in a single package.

Installation

npm install @samithahansaka/formless

# Plus your form library of choice
npm install react-hook-form  # or formik, or @tanstack/react-form
npm install zod              # for schema validation

Quick Start

import { z } from 'zod';
import {
  useUniversalForm,
  Field,
  rhfAdapter, // or formikAdapter, tanstackAdapter
  zodBridge,
} from '@samithahansaka/formless';

const schema = zodBridge(
  z.object({
    name: z.string().min(1, 'Name is required'),
    email: z.string().email('Invalid email'),
  })
);

function ContactForm() {
  const form = useUniversalForm({
    schema,
    adapter: rhfAdapter(),
    defaultValues: { name: '', email: '' },
  });

  return (
    <form onSubmit={form.handleSubmit(data => console.log(data))}>
      <Field form={form} name="name" placeholder="Name" />
      <Field form={form} name="email" type="email" placeholder="Email" />
      <button type="submit" disabled={form.isSubmitting}>
        Submit
      </button>
    </form>
  );
}

What's Included

This package re-exports everything from:

  • @samithahansaka/formless-core - Core types and utilities
  • @samithahansaka/formless-react - React hooks and components
  • @samithahansaka/formless-react-hook-form - React Hook Form adapter
  • @samithahansaka/formless-formik - Formik adapter
  • @samithahansaka/formless-tanstack-form - TanStack Form adapter
  • @samithahansaka/formless-zod - Zod schema bridge

Available Exports

Hooks

  • useUniversalForm - Main form hook
  • useField - Individual field hook
  • useFieldArray - Dynamic field arrays
  • useWatch - Watch form values

Components

  • Form - Form wrapper component
  • Field - Field component
  • FieldArray - Field array component
  • FormProvider - Context provider

Adapters

  • rhfAdapter - React Hook Form adapter
  • formikAdapter - Formik adapter
  • tanstackAdapter - TanStack Form adapter
  • useRHFAdapter - React Hook Form hook adapter
  • useFormikAdapter - Formik hook adapter
  • useTanStackAdapter - TanStack Form hook adapter

Schema Bridges

  • zodBridge - Zod schema bridge

Utilities

  • Path utilities: getByPath, setByPath, parsePath, etc.
  • Error utilities: normalizeFieldError, mergeErrors, etc.
  • Comparison utilities: deepEqual, shallowEqual, etc.

Documentation

For full documentation, visit the main repository.

License

MIT