Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@conform-to/yup
Advanced tools
This tries to infer constraint of each field based on the yup schema. This is useful for:
:required
import { useForm } from '@conform-to/react';
import { getFieldsetConstraint } from '@conform-to/yup';
import * as yup from 'yup';
const schema = yup.object({
email: yup.string().required(),
password: yup.string().required(),
});
function Example() {
const [form, { email, password }] = useForm({
constraint: getFieldsetConstraint(schema),
});
// ...
}
It parses the formData and returns a submission result with the validation error. If no error is found, the parsed data will also be populated as submission.value
.
import { useForm } from '@conform-to/react';
import { parse } from '@conform-to/yup';
import * as yup from 'yup';
const schema = yup.object({
email: yup.string().required(),
password: yup.string().required(),
});
function ExampleForm() {
const [form] = useForm({
onValidate({ formData }) {
return parse(formData, { schema });
},
});
// ...
}
Or when parsing the formData on server side (e.g. Remix):
import { useForm } from '@conform-to/react';
import { parse } from '@conform-to/yup';
import * as yup from 'yup';
const schema = yup.object({
// Define the schema with yup
});
export async function action({ request }) {
const formData = await request.formData();
const submission = parse(formData, {
// If you need extra validation on server side
schema: schema.test(/* ... */),
// If the schema definition includes async validation
async: true,
});
if (submission.intent !== 'submit' || !submission.value) {
return submission;
}
// ...
}
FAQs
Conform helpers for integrating with yup
We found that @conform-to/yup 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.