JSCK (JSON Schema Compiled checK) is a JSON Schema validator for Node.js that compiles schemas into efficient validation trees for performance. It supports JSON Schema drafts 3 and 4 with some caveats (e.g., no remote refs, no uniqueItems). Current stable version is 0.3.2. It is faster than many alternatives due to compilation, but is no longer actively maintained (last release in 2016). Key differentiators: compiles schema to functions, supports draft 3 and 4, but lacks modern draft 6/7/2019-09 support.
npm install jsckNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows basic usage: create a Draft 4 validator, validate a document, and inspect errors.
Consider switching to modern validators like Ajv or @cfworker/json-schema.
Use a validator that supports remote references, such as Ajv.
Use another validator if you need to enforce unique arrays.
Avoid complex 'id' usage or switch to a validator with full support.
None for consumers; purely informational.
Run 'npm install jsck' and ensure node_modules contains it.
Use 'const JSCK = require('jsck');' then 'new JSCK.draft4(schema)'.Either avoid using 'format' or use a plugin/extend JSCK (see docs).
No dependency data recorded yet.