
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
@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.
The npm package @bit-js/valify receives a total of 1 weekly downloads. As such, @bit-js/valify popularity was classified as not popular.
We found that @bit-js/valify demonstrated a not healthy version release cadence and project activity because the last version was released 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.