React Hook Form Logo - React hook personalizado para la validación de formularios

Formas performantes, flexibles y extensibles con validación fácil de usar.

[![npm downloads](https://img.shields.io/npm/dm/react-hook-form.svg?style=for-the-badge)](https://www.npmjs.com/package/react-hook-form) [![npm](https://img.shields.io/npm/dt/react-hook-form.svg?style=for-the-badge)](https://www.npmjs.com/package/react-hook-form) [![npm](https://img.shields.io/bundlephobia/minzip/react-hook-form?style=for-the-badge)](https://bundlephobia.com/result?p=react-hook-form) [![Coverage Status](https://img.shields.io/coveralls/github/bluebill1049/react-hook-form/master?style=for-the-badge)](https://coveralls.io/github/bluebill1049/react-hook-form?branch=master) [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=React+hooks+for+form+validation+without+the+hassle&url=https://github.com/bluebill1049/react-hook-form) [![Join the community on Spectrum](https://withspectrum.github.io/badge/badge.svg)](https://spectrum.chat/react-hook-form)

React Hook Form video - React hook personalizado para la validacion de de formularios

English | 繁中 | 简中 | 日本語 | 한국어 | Français | Italiano | Português | Español | Русский | Deutsch | Türkçe ## Caracteristicas - Construido con rendimiento y DX en mente - Adopte la validación de forma no controlada - Mejora el rendimiento de formularios controlados - [Tiny size](https://bundlephobia.com/result?p=react-hook-form@latest) sin ninguna dependencia - Sigue el estándar HTML para la validación - Compatible con React Native - Soporta [Yup](https://github.com/jquense/yup) validación basada en esquemas - Admite la validación del navegador nativo - Cree formularios rápidamente con el [form builder](https://react-hook-form.com/form-builder) ## Instalación $ npm install react-hook-form ## Enlaces - [Motivación](https://medium.com/@bruce1049/form-validation-with-hook-in-3kb-c5414edf7d64) - [Video tutorial](https://www.youtube.com/watch?v=-mFXqOaqgZk&t) - [Empezar](https://react-hook-form.com/get-started) - [API](https://react-hook-form.com/docs) - [Ejemplos](https://github.com/bluebill1049/react-hook-form/tree/master/examples) - [Demo](https://react-hook-form.com) - [Generador de formularios](https://react-hook-form.com/form-builder) - [FAQs](https://react-hook-form.com/faqs) ## Inicio rápido ```jsx import React from 'react'; import { useForm } from 'react-hook-form'; function App() { const { register, handleSubmit, errors } = useForm(); // inicializar el hook const onSubmit = (data) => { console.log(data); }; return (
{/* registrar una entrada */} {errors.lastname && 'Last name is required.'} {errors.age && 'Please enter number for age.'}
); } ``` ## Patrocinadores ¡Gracias a todos nuestros patrocinadores! [[Hazte patrocinador](https://opencollective.com/react-hook-form#backer)]. ## Organizaciones Gracias a estas maravillosas organizaciones! [[Contribuir](https://opencollective.com/react-hook-form/contribute)] ## Colaboradores Gracias a estas personas maravillosas! [[Hazte colaborador](../CONTRIBUTING.md)].