![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
har-schema
Advanced tools
The har-schema npm package provides JSON schemas for HTTP Archive (HAR) format. HAR is a common format used for logging web browser interactions with websites. The schemas provided by har-schema can be used to validate HAR files to ensure they conform to the expected structure.
Validate HAR Log
This feature allows you to validate a HAR log against the HAR schema. The code sample uses the Ajv library to compile the HAR log schema and validate a HAR log data object.
const Ajv = require('ajv');
const harSchema = require('har-schema');
const ajv = new Ajv();
const validate = ajv.compile(harSchema.log);
const data = { /* HAR log data */ };
const valid = validate(data);
if (!valid) console.log(validate.errors);
Validate HAR Entries
This feature allows you to validate individual HAR entries against the HAR schema. The code sample uses the Ajv library to compile the HAR entry schema and validate a HAR entry data object.
const Ajv = require('ajv');
const harSchema = require('har-schema');
const ajv = new Ajv();
const validate = ajv.compile(harSchema.entry);
const data = { /* HAR entry data */ };
const valid = validate(data);
if (!valid) console.log(validate.errors);
The har-validator package provides a set of schemas and validation functions for HAR files. It is similar to har-schema but includes additional validation logic and helper functions to simplify the validation process.
The jsonschema package is a general-purpose JSON schema validator. While it is not specific to HAR files, it can be used to validate any JSON data against a schema, including HAR data if the appropriate schema is provided.
The ajv package is a fast JSON schema validator. It supports JSON Schema draft-07 and can be used to validate HAR files by compiling the HAR schema and validating HAR data. It is more versatile and performant compared to har-schema.
JSON Schema for HTTP Archive (HAR).
npm install --only=production --save har-schema
Compatible with any JSON Schema validation tool.
:copyright: ahmadnassri.com · License: ISC · Github: @ahmadnassri · Twitter: @ahmadnassri
FAQs
JSON Schema for HTTP Archive (HAR)
We found that har-schema 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.