
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
@hookform/devtools
Advanced tools
Performant, flexible and extensible forms with easy to use validation.
This React Component will help you to debug forms when working React Hook Form, and give you more insight about your form's detail.
$ npm install @hookform/devtools -D
import React from 'react';
import { useForm } from 'react-hook-form';
import { DevTool } from '@hookform/devtools';
import './App.css';
const App = () => {
const { register, control, handleSubmit } = useForm({
mode: 'onChange',
});
return (
<>
<DevTool control={control} placement="top-left" />
<form onSubmit={handleSubmit((d) => console.log(d))}>
<h1>React Hook Form DevTools</h1>
<label>Test</label>
<input name="test" ref={register} />
<input type="submit" />
</form>
</>
);
};
export default App;
Thanks goes to all our backers! [Become a backer].
Thanks goes to these wonderful organizations! [Contribute].
Thanks goes to these wonderful people! [Become a contributor].
Redux DevTools is a development tool for Redux that provides a visual interface to inspect and debug Redux state changes. It offers similar functionalities to @hookform/devtools but is focused on Redux state management rather than form state.
React Query DevTools is a development tool for React Query that provides a visual interface to inspect and debug queries and mutations. It offers similar functionalities to @hookform/devtools but is focused on data fetching and caching rather than form state.
MobX React DevTools is a development tool for MobX that provides a visual interface to inspect and debug MobX state changes. It offers similar functionalities to @hookform/devtools but is focused on MobX state management rather than form state.
FAQs
React Hook Form dev tool to help debugging forms
The npm package @hookform/devtools receives a total of 379,850 weekly downloads. As such, @hookform/devtools popularity was classified as popular.
We found that @hookform/devtools demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.