Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@felte/react
Advanced tools
Felte is an extensible form library originally built for Svelte but easily integrated with React using this package. Felte, on its most simple form, only requires you to set a ref
to your form element to work. No custom Field
or Form
components are needed, making custom styles really easy to do. You can see it in action in this CodeSandbox demo
name
attribute is necessary).reporter
packages.import React, { useEffect } from 'react';
import { useForm } from '@felte/react';
function Form() {
const { form } = useForm({
onSubmit: (values) => console.log(values),
});
return (
<form ref={form}>
<input name="email" />
<input name="password" type="password" />
<button type="submit">Submit</button>
</form>
);
}
npm install --save @felte/react
# Or, if you use yarn
yarn add @felte/react
To learn more about how to use @felte/react
to handle your forms, check the official documentation.
FAQs
An extensible form library for ReactJS
The npm package @felte/react receives a total of 768 weekly downloads. As such, @felte/react popularity was classified as not popular.
We found that @felte/react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.