typhon88 / react-hook-form

📋 React hooks for forms validation without the hassle (Web + React Native)

Home Page:https://react-hook-form.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Performant, flexible and extensible forms with easy to use validation.

npm downloads npm npm Coverage Status

English | 简体中文 | 日本語 | 한국어 | Français | Italiano | Português | Español | Русский | Deutsch | Türkçe

Features

Install

npm install react-hook-form

Links

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);
  };

  return (
    <form onSubmit={handleSubmit(onSubmit)}>
      <input name="firstname" ref={register} /> {/* register an input */}
      
      <input name="lastname" ref={register({ required: true })} />
      {errors.lastname && 'Last name is required.'}
      
      <input name="age" ref={register({ pattern: /\d+/ })} />
      {errors.age && 'Please enter number for age.'}
      
      <input type="submit" />
    </form>
  );
}

Sponsors

Want your logo here? DM on Twitter

Backers

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

Organizations

Thanks goes to these wonderful organizations! [Contribute].

Contributors

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

About

📋 React hooks for forms validation without the hassle (Web + React Native)

https://react-hook-form.com

License:MIT License


Languages

Language:TypeScript 98.9%Language:JavaScript 0.8%Language:HTML 0.3%