# harplayer **Repository Path**: mirrors_kong/harplayer ## Basic Information - **Project Name**: harplayer - **Description**: Replay HAR logs - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # harplayer [![](https://img.shields.io/wercker/ci/551bc8323993a61109001091.svg)](https://app.wercker.com/#applications/551bc8323993a61109001091) [![](https://img.shields.io/coveralls/Mashape/harplayer.svg)](https://coveralls.io/r/Mashape/harplayer) [![](https://img.shields.io/npm/v/harplayer.svg)](https://www.npmjs.com/package/harplayer) Replay [HAR](http://www.softwareishard.com/blog/har-12-spec/) log entries to debug and visualize http services. ### Install ```sh npm install harplayer ``` ### Usage ```js var harplayer = require('harplayer') var har = require('./har.json') harplayer.replayOne(har, 0, function(err, res, body){ if (err) throw err console.log(res.statusCode) }) harplayer.replayAll(har, function(err, res, body){ if (err) throw err console.log(res.statusCode) }) harplayer.replayAllInParallel(har, function(err, res, body){ if (err) throw err console.log(res.statusCode) }) ``` Check out the [examples](https://github.com/Mashape/harplayer/tree/master/examples) directory for more. ### Contributing [Feedback](https://github.com/Mashape/harplayer/issues) and [pull requests](https://github.com/Mashape/harplayer/pulls) are most welcomed. ### MIT license Copyright (c) 2015, Mashape (https://www.mashape.com/)