Generate fast-check arbitraries from JSON Schema for property-based testing. Version 0.0.6, early stage development with limited schema support (subset of JSON Schema). Differentiates by directly integrating JSON Schema with fast-check, enabling property-based tests that automatically generate valid inputs based on schema definitions. Supports faker-js sugar for realistic data. Not production-ready; many JSON Schema features missing (minProperties, if/then/else, oneOf, dependencies as objects).
npm install json-schema-fast-checkNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Property-based test that validates all generated objects from schema satisfy constraints.
Avoid using unimplemented schema constructs or use alternative library like json-schema-faker or quicktype.
Import default as jsfc or any other name: import YourName from 'json-schema-fast-check'.
Only use array-style dependencies.
Use import jsfc from 'json-schema-fast-check' not import { jsfc } from 'json-schema-fast-check'Add import fc from 'fast-check'