Gathering detailed insights and metrics for @hookform/devtools
Gathering detailed insights and metrics for @hookform/devtools
Gathering detailed insights and metrics for @hookform/devtools
Gathering detailed insights and metrics for @hookform/devtools
@hookform/resolvers
React Hook Form validation resolvers: Yup, Joi, Superstruct, Zod, Vest, Class Validator, io-ts, Nope, computed-types, TypeBox, arktype, Typanion, Effect-TS and VineJS
@hookform/error-message
React Hook Form error message component
devtools-protocol
The Chrome DevTools Protocol JSON
@jsdevtools/ono
Throw better errors.
npm install @hookform/devtools
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
647 Stars
175 Commits
47 Forks
6 Watching
22 Branches
30 Contributors
Updated on 27 Nov 2024
Minified
Minified + Gzipped
TypeScript (80.44%)
JavaScript (12.34%)
CSS (6.34%)
HTML (0.78%)
Shell (0.1%)
Cumulative downloads
Total Downloads
Last day
-3.4%
61,067
Compared to previous day
Last week
-1.9%
302,121
Compared to previous week
Last month
12.8%
1,283,145
Compared to previous month
Last year
70.1%
13,184,802
Compared to previous year
8
39
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
1import React from 'react'; 2import { useForm } from 'react-hook-form'; 3import { DevTool } from '@hookform/devtools'; 4import './App.css'; 5 6const App = () => { 7 const { register, control, handleSubmit } = useForm({ 8 mode: 'onChange', 9 }); 10 11 return ( 12 <> 13 <DevTool control={control} placement="top-left" /> 14 15 <form onSubmit={handleSubmit((d) => console.log(d))}> 16 <h1>React Hook Form DevTools</h1> 17 18 <label>Test</label> 19 <input name="test" ref={register} /> 20 21 <input type="submit" /> 22 </form> 23 </> 24 ); 25}; 26 27export 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].
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 16/29 approved changesets -- score normalized to 5
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
46 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More