har-examples
v3.1.1
Published
A collection of HAR files for developing against the HAR spec
Downloads
176
Maintainers
Keywords
Readme
har-examples
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
}
}
]
}
} */