@abihf/react-hook-form
TypeScript icon, indicating that this package has built-in type declarations

3.8.0 • Public • Published
English | 简体中文
React Hook Form Logo - React hook form validation

React hook form validation without the hassle

Tweet  CircleCI Coverage Status npm downloads npm npm

  • Super easy to integrate and create forms
  • Built with performance and developer experience in mind
  • Follows HTML standard for validation
  • Tiny size without any dependency
  • uncontrolled form validation
  • Build forms quickly with the form builder

Install

$ npm install react-hook-form

Docs

Quickstart

import React from 'react'
import useForm from 'react-hook-form'

function App() {
  const { register, handleSubmit, errors } = useForm() // initialise the hook
  const onSubmit = (data) => { console.log(data) } // callback when validation pass
    
  return (
    <form onSubmit={handleSubmit(onSubmit)}>
      <input name="firstname" ref={register} /> {/* register an input */}
      
      <input name="lastname" ref={register({ required: true })} /> {/* apply required validation */}
      {errors.lastname && 'Last name is required.'} {/* error message */}
      
      <input name="age" ref={register({ pattern: /\d+/ })} /> {/* apply pattern validation */}
      {errors.age && 'Please enter number for age.'} {/* error message */}
      
      <input type="submit" />
    </form>
  )
}

Contributors

Thanks goes to these wonderful people:

Package Sidebar

Install

npm i @abihf/react-hook-form

Weekly Downloads

2

Version

3.8.0

License

MIT

Unpacked Size

100 kB

Total Files

71

Last publish

Collaborators

  • abihf