Gathering detailed insights and metrics for enhanced-formik-persist
Gathering detailed insights and metrics for enhanced-formik-persist
Gathering detailed insights and metrics for enhanced-formik-persist
Gathering detailed insights and metrics for enhanced-formik-persist
💾 Persist and rehydrate a Formik form to localStorage
npm install enhanced-formik-persist
Typescript
Module System
Node Version
NPM Version
70.3
Supply Chain
86
Quality
74.5
Maintenance
100
Vulnerability
97.9
License
TypeScript (73.44%)
JavaScript (26.56%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
378 Stars
15 Commits
56 Forks
6 Watchers
2 Branches
4 Contributors
Updated on May 04, 2025
Latest Version
1.0.10
Package Id
enhanced-formik-persist@1.0.10
Unpacked Size
768.22 kB
Size
158.42 kB
File Count
9
NPM Version
6.14.8
Node Version
14.9.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
7
29
Persist and rehydrate a Formik form.
npm install enhanced-formik-persist --save
Just import the <Persist >
component and put it inside any Formik form. It renders null
!
1import React from 'react' 2import { Formik, Field, Form } from 'formik' 3import { Persist } from 'formik-persist' 4 5export const Signup = () => 6 <div> 7 <h1>My Cool Persisted Form</h1> 8 <Formik 9 onSubmit={values => console.log(values)} 10 initialValues={{ firstName: '', lastName: '', email: '' }} 11 render={props => 12 <Form className="whatever"> 13 <Field name="firstName" placeholder="First Name" /> 14 <Field name="lastName" placeholder="Last Name" /> 15 <Field name="email" type="email" placeholder="Email Address" /> 16 <button type="submit">Submit</button> 17 <Persist name="signup-form" /> 18 </Form>} 19 /> 20 </div>;
Only three props!
name: string
: LocalStorage key to save form state todebounce:? number
: Default is 300
. Number of ms to debounce the function that saves form state.ignoreFields: string[]
: Fields to ignore in the formNo vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 3/12 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
60 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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