har-examples

A collection of HAR files for developing against the HAR spec

Usage no npm install needed!

<script type="module">
  import harExamples from 'https://cdn.skypack.dev/har-examples';
</script>

README

har-examples

CI

A collection of HAR files for developing against the HAR specification.

Installation

npm install --save-dev har-examples

Usage

const hars = require('har-examples');

console.log(hars['short']);

/* {
  "log": {
    "entries": [
      {
        "startedDateTime": "2021-07-09T23:28:52.627Z",
        "time": 85,
        "request": {
          "method": "GET",
          "url": "https://httpbin.org/get",
          "httpVersion": "HTTP/1.1",
          "cookies": [],
          "headers": [],
          "queryString": [],
          "bodySize": -1,
          "headersSize": -1
        },
        "response": {
          "status": 200,
          "statusText": "OK",
          "httpVersion": "HTTP/1.1",
          "headers": [
            {
              "name": "Content-Type",
              "value": "application/json"
            },
            {
              "name": "Content-Length",
              "value": 404
            }
          ],
          "content": {
            "size": 404,
            "mimeType": "application/json",
            "text": "{\"args\":{},\"headers\":{\"Accept\":\"*\/*\",\"Accept-Encoding\":\"gzip, deflate, br\",\"Cache-Control\":\"no-cache\",\"Host\":\"httpbin.org\"},\"origin\":\"127.0.0.1\",\"url\":\"https://httpbin.org/get\"}"
          },
          "headersSize": -1,
          "bodySize": -1
        }
      }
    ]
  }
} */