1
0
Fork 0
waifurudor.de/node_modules/har-validator
2022-04-02 18:40:13 -04:00
..
lib Initial commit 2022-04-02 18:40:13 -04:00
src Initial commit 2022-04-02 18:40:13 -04:00
LICENSE Initial commit 2022-04-02 18:40:13 -04:00
package.json Initial commit 2022-04-02 18:40:13 -04:00
README.md Initial commit 2022-04-02 18:40:13 -04:00

HAR Validator version License

Extremely fast HTTP Archive (HAR) validator using JSON Schema.

Build Status Downloads Code Climate Coverage Status Dependency Status Dependencies

Install

npm install --only=production --save har-validator

Usage

I recommend using an optimized build matching your Node.js environment version, otherwise, the standard require would work just fine with any version of Node >= v4.0 .

/*
 * Node 7
 */
const validate = require('har-validator/lib/node7')

/*
 * Node 6
 */
const validate = require('har-validator/lib/node6')

/*
 * Node 4 (Default)
 */
var validate = require('har-validator')

CLI Usage

Please refer to har-cli for more info.

API

Note: as of v2.0.0 this module defaults to Promise based API. For backward comptability with v1.x an async/callback API is also provided


©️ ahmadnassri.com  ·  License: ISC  ·  Github: @ahmadnassri  ·  Twitter: @ahmadnassri