
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
npm install --save-dev valimock @faker-js/faker
yarn add -D valimock @faker-js/faker
Import and optionally configure a new instance of the Valimock class, then pass along your valibot schema to mock(), that's it!
import { parse, array, union, string, pipe, url, number, maxValue } from "valibot";
import { Valimock } from "valimock";
describe(`example test`, () => {
it(`should generate valid mock data`, () => {
const schema = array(union([pipe(string(), url()), pipe(number(), maxValue(20))]));
const result = new Valimock().mock(schema);
expect(parse(schema, result)).toStrictEqual(result);
});
});
[!NOTE]
For async schemas, you will need to use
parseAsync(). Be aware that async schemas generate aPromiseand may need to beawait'ed depending on usage.Please see the
__tests__folder for more usage examples of different schema types.
[!WARNING]
At present, not all of
valibot's API is fully covered byvalimock, however, any unimplemented schema type can be handled by a user-supplied map via thecustomMocksconfiguration option. The schema'stypeproerty is used as the property key for this map.
| Implemented | Incomplete | Not Implemented | Unsupported | |
|---|---|---|---|---|
| Symbol | ✔ | ⚠ | ❌ | ➖ |
| Any | Array | Bigint | Blob | Boolean | Date | Enum |
|---|---|---|---|---|---|---|
| ❌ | ✔ | ✔ | ➖ | ✔ | ⚠ | ✔ |
| Instance | Intersect | Literal | Map | NaN | Never | NonNullable |
| ➖ | ✔ | ✔ | ✔ | ✔ | ❌ | ✔ |
| NonNullish | NonOptional | Null | Nullable | Nullish | Number | Object |
| ✔ | ✔ | ✔ | ✔ | ✔ | ⚠ | ✔ |
| Optional | Picklist | Record | Recursive | Set | Special | String |
| ✔ | ✔ | ✔ | ✔ | ✔ | ➖ | ⚠ |
| Symbol | Tuple | Undefined | Union | Unknown | Variant | Void |
| ➖ | ✔ | ✔ | ✔ | ❌ | ❌ | ❌ |
Below is an incomplete list of supported validations for the given schemas.
| check | checkItems | empty | everyItem | excludes |
|---|---|---|---|---|
| ❌ | ❌ | ✔ | ❌ | ❌ |
| includes | length | maxLength | minLength | nonEmpty |
| ❌ | ✔ | ✔ | ✔ | ✔ |
| notLength | partialCheck | rawCheck | someItem | |
| ❌ | ❌ | ❌ | ❌ |
| check | gtValue | ltValue | maxValue | minValue |
|---|---|---|---|---|
| ❌ | ❌ | ❌ | ✔ | ✔ |
| multipleOf | notValue | notValues | rawCheck | value |
| ❌ | ❌ | ❌ | ❌ | ✔ |
| values | ||||
| ❌ |
| check | gtValue | ltValue | maxValue | minValue |
|---|---|---|---|---|
| ❌ | ❌ | ❌ | ✔ | ✔ |
| notValue | notValues | rawCheck | value | values |
| ❌ | ❌ | ❌ | ✔ | ❌ |
| check | finite | gtValue | integer | ltValue |
|---|---|---|---|---|
| ❌ | ❌ | ❌ | ✔ | ❌ |
| maxValue | minValue | multipleOf | notValue | notValues |
| ✔ | ✔ | ❌ | ❌ | ❌ |
| rawCheck | safeInteger | value | values | |
| ❌ | ❌ | ✔ | ❌ |
| base64 | bic | bytes | creditCard | cuid2 |
|---|---|---|---|---|
| ✔ | ✔ | ❌ | ✔ | ✔ |
| check | decimal | digits | emoji | |
| ❌ | ✔ | ✔ | ✔ | ✔ |
| empty | endsWith | excludes | graphemes | gtValue |
| ✔ | ❌ | ❌ | ❌ | ❌ |
| hash | hexadecimal | hexColor | imei | includes |
| ❌ | ✔ | ✔ | ✔ | ❌ |
| ip | ipv4 | ipv6 | isoDate | isoDateTime |
| ✔ | ✔ | ✔ | ✔ | ✔ |
| isoTime | isoTimeSecond | isoTimestamp | isoWeek | length |
| ✔ | ✔ | ✔ | ❌ | ✔ |
| ltValue | mac | mac48 | mac64 | maxBytes |
| ❌ | ✔ | ❌ | ❌ | ❌ |
| maxGraphemes | maxLength | maxValue | maxWords | minBytes |
| ❌ | ✔ | ❌ | ❌ | ❌ |
| minGraphemes | minLength | minValue | minWords | nanoid |
| ❌ | ✔ | ❌ | ❌ | ✔ |
| nonEmpty | notBytes | notEntries | notGraphemes | notLength |
| ✔ | ❌ | ❌ | ❌ | ❌ |
| notValue | notValues | notWords | octal | rawCheck |
| ❌ | ❌ | ❌ | ✔ | ❌ |
| regex | rfcEmail | slug | startsWith | ulid |
| ✔ | ❌ | ❌ | ❌ | ✔ |
| url | uuid | value | values | words |
| ✔ | ✔ | ❌ | ❌ | ❌ |
Valimock's implementation is based on @anatine/zod-mock
Released under the MIT license © Drake Costa.
FAQs
Generate mock data for Valibot schemas using Faker
We found that valimock demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.