JSPM

  • Created
  • Published
  • Downloads 296
  • Score
    100M100P100Q78931F
  • License Apache-2.0

Load Cerbos policies from YAML or JSON files

Package Exports

  • @cerbos/files

Readme

@cerbos/files

npm

Load Cerbos policies from YAML or JSON files.

Prerequisites

  • Node.js 20+

Installation

$ npm install @cerbos/files

Example usage

import { readDirectory, readPolicy, readSchema } from "@cerbos/files";

const policy = await readPolicy("path/to/policy.yaml");
// => { apiVersion: "api.cerbos.dev/v1", ... }

const schema = await readSchema("_schemas/path/to/schema.json");
// => { id: "path/to/schema.json", definition: "..." }

const { policies, schemas } = await readDirectory("path/to/directory");
// => { policies: [...], schemas: [...] }

For more details, see the package documentation.

Further reading

Get help