Home

Awesome

<div align="center"> <a href="https://react-hook-form.com" title="React Hook Form - Simple React forms validation"> <img src="https://raw.githubusercontent.com/react-hook-form/react-hook-form/master/docs/logo.png" alt="React Hook Form Logo - React hook custom hook for form validation" /> </a> </div> <div align="center">

npm downloads npm npm Discord

</div> <p align="center"> <a href="https://react-hook-form.com/get-started">Get started</a> | <a href="https://react-hook-form.com/docs">API</a> | <a href="https://react-hook-form.com/form-builder">Form Builder</a> | <a href="https://react-hook-form.com/faqs">FAQs</a> | <a href="https://github.com/react-hook-form/react-hook-form/tree/master/examples">Examples</a> </p>

Features

Install

npm install react-hook-form

Quickstart

import { useForm } from 'react-hook-form';

function App() {
  const {
    register,
    handleSubmit,
    formState: { errors },
  } = useForm();

  return (
    <form onSubmit={handleSubmit((data) => console.log(data))}>
      <input {...register('firstName')} />
      <input {...register('lastName', { required: true })} />
      {errors.lastName && <p>Last name is required.</p>}
      <input {...register('age', { pattern: /\d+/ })} />
      {errors.age && <p>Please enter number for age.</p>}
      <input type="submit" />
    </form>
  );
}
<a href="https://ui.dev/bytes/?r=bill"> <img src="https://raw.githubusercontent.com/react-hook-form/react-hook-form/master/docs/ads-1.jpeg" /> </a>

Sponsors

Thanks go to these kind and lovely sponsors!

<a target="_blank" href='https://route4me.com/'> <img width="94" src="https://images.opencollective.com/route4me/71fb6fa/avatar/256.png?height=256" /> </a> <a target="_blank" href='https://toss.im'> <img width="94" src="https://images.opencollective.com/toss/3ed69b3/logo/256.png" /> </a> <a target="_blank" href='https://principal.com/about-us'> <img width="94" src="https://images.opencollective.com/principal/431e690/logo/256.png?height=256" /> </a> <a target="_blank" href="https://graphcms.com"> <img width="94" src="https://avatars.githubusercontent.com/u/31031438" /> </a> <a target="_blank" href="https://www.beekai.com/"> <img width="94" src="https://www.beekai.com/marketing/logo/logo.svg" /> </a> <a target="_blank" href="https://kanamekey.com"> <img width="94" src="https://images.opencollective.com/kaname/d15fd98/logo/256.png" /> </a> <a target="_blank" href="https://www.casinoreviews.net/"> <img width="94" src="https://images.opencollective.com/casinoreviews/f0877d1/logo/256.png" /> </a>

Past sponsors

<a href="https://www.leniolabs.com/" target="_blank"> <img src="https://images.opencollective.com/leniolabs_/63e9b6e/logo/256.png" width="48" height="48" /> </a> <a target="_blank" href="https://underbelly.is"> <img width="48" src="https://images.opencollective.com/underbelly/989a4a6/logo/256.png" /> </a> <a target="_blank" href="https://feathery.io"> <img width="48" src="https://images.opencollective.com/feathery1/c29b0a1/logo/256.png" /> </a> <a target="_blank" href="https://getform.io"> <img width="48" src="https://images.opencollective.com/getformio2/3c978c8/avatar/256.png" /> </a> <a href="https://marmelab.com/" target="_blank"> <img src="https://images.opencollective.com/marmelab/d7fd82f/logo/256.png" width="48" height="48" /> </a> <a target="_blank" href="https://formcarry.com/"> <img width="48" src="https://images.opencollective.com/formcarry/a40a4ea/logo/256.png" /> </a> <a target="_blank" href="https://fabform.io"> <img width="48" src="https://images.opencollective.com/fabform/2834037/logo/256.png" /> </a> <a target="_blank" href="https://www.thinkmill.com.au/"> <img width="48" src="https://images.opencollective.com/thinkmill/28910ec/logo/256.png" /> </a> <a target="_blank" href="https://kwork.studio/"> <img width="48" src="https://images.opencollective.com/knowledge-work/f91b72d/logo/256.png" /> </a> <a target="_blank" href="https://fiberplane.com/"> <img width="48" src="https://avatars.githubusercontent.com/u/61152955?s=200&v=4" /> </a> <a target="_blank" href="https://www.jetbrains.com/"> <img width="48" src="https://resources.jetbrains.com/storage/products/company/brand/logos/jb_beam.png" /> </a> <a target="_blank" href="https://www.mirakl.com/"> <img width="48" src="https://images.opencollective.com/mirakl/0b191f0/logo/256.png" /> </a> <a target="_blank" href='https://wantedlyinc.com'> <img width="48" src="https://images.opencollective.com/wantedly/d94e44e/logo/256.png" /> </a>

Backers

Thanks go to all our backers! [Become a backer].

<a href="https://opencollective.com/react-hook-form#backers"> <img src="https://opencollective.com/react-hook-form/backers.svg?width=950" /> </a>

Contributors

Thanks go to these wonderful people! [Become a contributor].

<a href="https://github.com/react-hook-form/react-hook-form/graphs/contributors"> <img src="https://opencollective.com/react-hook-form/contributors.svg?width=890&button=false" /> </a>