JSPM

react-hook-form

1.1.0-beta.3
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 12176464
  • Score
    100M100P100Q209452F
  • License MIT

Package Exports

  • react-hook-form

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-hook-form) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

React forme Logo - React hook form valiation

React hook form validation without the hassle

Tweet CircleCI Coverage Status npm downloads npm npm Donate

  • Super easy to create forms and integrate
  • Build with React hook, performance and developer experience in mind
  • Follow html standard for validation
  • Tiny size without other dependency 2 kB (minified + gzipped)
  • Build a quick form with form builder

Install

$ npm install react-hook-form

Website

Quickstart

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

function App() {
  const { register, handleSubmit, errors } = useForm()
  const onSubmit = (data) => { console.log(data) }
  console.log(errors)
    
  return (
    <form onSubmit={handleSubmit(onSubmit}>
      <input name="firstname" ref={(ref) => register({ ref, required: true })} />
      <input name="lastname" ref={(ref) => register({ ref, pattern: "[a-z]{1,15}" })} />
      <input type="submit" />
    </form>
  )
}