v0.2.0: Indicator matching
In this release we introduce indicator matching as a fallback from our preferred adapter matching. You can provide a list of indicators which TrackHAR will then look for in the requests for which no adapter was defined. TrackHAR will also check for base64 and URL-encoded versions of the indicators.
Here is an example of how to use the new feature:
const data = await process(harJson, { indicatorValues: {
deviceName: 'Sam’s iPhone',
localIp: '192.168.0.42'
}});What's Changed
- Fixes #8: Improve the README and explain how to contribute adapters by @zner0L in #13
- Fixes #6: Indicator matching by @baltpeter in #15
Full Changelog: v0.1.1...v0.2.0