
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
@vee-validate/joi
Advanced tools
Official vee-validate integration with Joi schema validation
Joi is a feature rich validation library for the browser and nodejs
In their own words it is a:
The most powerful schema description language and data validator for JavaScript.
You can use joi as a typed schema with the @vee-validate/joi
package:
# npm
npm install @vee-validate/joi
# yarn
yarn add @vee-validate/joi
# pnpm
pnpm add @vee-validate/joi
The @vee-valdiate/joi
package exposes a toTypedSchema
function that accepts any joi schema. Which then you can pass along to validationSchema
option on useForm
.
This makes the form values and submitted values typed automatically and caters for both input and output types of that schema.
import { useForm } from 'vee-validate';
import { object, string } from 'joi';
import { toTypedSchema } from '@vee-validate/joi';
interface FormData {
email: string;
password: string;
name?: string;
}
const { values, handleSubmit } = useForm({
validationSchema: toTypedSchema(
object<FormData>({
email: string().min(1).required().message('required'),
password: string().min(1).message('required'),
name: string().optional(),
}),
),
});
// ❌ Type error, which means `values` is type-safe
values.email.endsWith('@gmail.com');
handleSubmit(submitted => {
// No errors, because email is required!
submitted.email.endsWith('@gmail.com');
// ❌ Type error, because `name` is not required so it could be undefined
// Means that your fields are now type safe!
submitted.name.length;
});
You can also define default values on your joi schema directly and it will be picked up by the form:
import { useForm } from 'vee-validate';
import { object, string } from 'joi';
import { toTypedSchema } from '@vee-validate/joi';
const { values, handleSubmit } = useForm({
validationSchema: toTypedSchema(
object({
email: string().default('something@email.com'),
password: string().default(''),
}),
),
});
Your initial values will be using the schema defaults, and also the defaults will be used if the values submitted is missing these fields.
4.15.0
FAQs
vee-validate integration with joi schema validation
The npm package @vee-validate/joi receives a total of 74 weekly downloads. As such, @vee-validate/joi popularity was classified as not popular.
We found that @vee-validate/joi 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
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.