
Security News
Node.js TSC Declines to Endorse Feature Bounty Program
The Node.js TSC opted not to endorse a feature bounty program, citing concerns about incentives, governance, and project neutrality.
@bit-js/valify
Advanced tools
A JSON schema library.
Valify includes a compiler to compile JSON schemas to assertion functions.
import { schema } from "@bit-js/valify";
import { evaluate, keywords } from "@bit-js/valify/compiler/assertion";
const User = schema({
type: "object",
required: ["name", "age"],
properties: {
name: {
type: "string",
minLength: 3,
maxLength: 32,
},
age: {
type: "integer",
exclusiveMinimum: 0,
exclusiveMaximum: 150,
},
},
});
const isUser = evaluate(User, keywords.draft6);
To compile the schema ahead-of-time:
import { schema } from "@bit-js/valify";
import { inspect, keywords } from "@bit-js/valify/compiler/assertion";
const User = schema({
type: "object",
required: ["name", "age"],
properties: {
name: {
type: "string",
minLength: 3,
maxLength: 32,
},
age: {
type: "integer",
exclusiveMinimum: 0,
exclusiveMaximum: 150,
},
},
});
const content = `export const isUser=(()=>{${inspect(User, keywords.draft6)}})();`;
Compilation options include:
evaluate(User, keywords.draft6, {
// Does not count `Number.NaN`, `Number.POSITIVE_INFINITY` and `Number.NEGATIVE_INFINITY` as valid numbers if set to true
noNonFiniteNumber: true; // Default: false
// Handle string width correctly for Unicode characters if set to true
strictStringWidth: true; // Default: false
// Use `Object.hasOwn` instead of directly accessing the property and check its value if set to true
strictPropertyCheck: true; // Default: false
// Array does not count as objects if set to true
noArrayObject: true; // Default: false
// Handle `multipleOf` keyword correctly for numbers below 1 if set to true
accurateMultipleOf: true; // Default: false
// Handle Unicode regular expressions correctly if set to true
unicodeAwareRegex: true; // Default: false
// Do deep comparisons for `uniqueItems`, `enum` and `const` keywords if set to false
fastAssertions: false; // Default: false
});
This library is experimental and still in active development.
Currently only draft 6 keywords (without format
, $ref
and $id
keywords) are supported.
FAQs
A JSON schema library.
We found that @bit-js/valify 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
The Node.js TSC opted not to endorse a feature bounty program, citing concerns about incentives, governance, and project neutrality.
Research
Security News
A look at the top trends in how threat actors are weaponizing open source packages to deliver malware and persist across the software supply chain.
Security News
ESLint now supports HTML linting with 48 new rules, expanding its language plugin system to cover more of the modern web development stack.