🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

@bit-js/valify

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bit-js/valify

A JSON schema library.

0.0.1
latest
npm
Version published
Maintainers
1
Created
Source

Valify

A JSON schema library.

Assertion

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
});

Note

This library is experimental and still in active development.

Currently only draft 6 keywords (without format, $ref and $id keywords) are supported.

FAQs

Package last updated on 12 Jun 2024

Did you know?

Socket

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.

Install

Related posts