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
It resolves yup schema to a conform schema:
import { useForm, useFieldset } from '@conform-to/react';
import { resolve } from '@conform-to/yup';
import * as yup from 'yup';
// Define the schema with zod
const schema = resolve(
yup.object({
email: yup.string().required(),
password: yup.string().required(),
})
);
// When used with `@conform-to/react`:
function ExampleForm() {
const formProps = useForm({
// Validating the form with the schema
validate: schema.validate
onSubmit: event => {
// Read the FormData from the from
const payload = new FormData(e.target);
// Parse the data against the zod schema
const submission = schema.parse(payload);
// It could be accepted / rejected / modified
console.log(submission.state);
// Parsed value (Only if accepted)
console.log(submission.data);
// Structured form value
console.log(submission.form.value);
// Structured form error (only if rejected)
console.log(submission.form.error);
};
})
const [setupFieldset, { email, password }] = useFieldset({
// Inferring the constraint with the schema
constraint: schema.constraint
});
// ...
}
Or parse the request payload on server side (e.g. Remix):
import { resolve } from '@conform-to/yup';
import * as yup from 'yup';
const schema = resolve(
yup.object({
// Define the schema with yup
}),
);
export let action = async ({ request }) => {
const formData = await request.formData();
const submission = schema.parse(formData);
// Return the current form state if not accepted
if (submission.state !== 'accepted') {
return json(submission.form);
}
// Do something else
};
export default function ExampleRoute() {
const formState = useActionData();
// You can then use formState.value / formState.error
// to populate inital value of each fields with
// the intital error
}
FAQs
Conform helpers for integrating with yup
The npm package @conform-to/yup receives a total of 10,719 weekly downloads. As such, @conform-to/yup popularity was classified as popular.
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.