Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pagexray

Package Overview
Dependencies
Maintainers
3
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pagexray - npm Package Compare versions

Comparing version 2.5.2 to 2.5.3

7

CHANGELOG.md
# CHANGELOG - PageXray
version 2.5.2 2019-01.09
version 2.5.3 2019-01-20
------------------------
### Fixed
* Fixing null error with some tracking pixels , thank you [rohit-nar](https://github.com/rohit-nair) for the PR [#71](https://github.com/sitespeedio/pagexray/pull/71)
version 2.5.2 2019-01-09
------------------------
### Fixed
* If the HAR contains a URL for a page, use that URL (to get the right URL for a SPA) [#69](https://github.com/sitespeedio/pagexray/pull/69)

@@ -7,0 +12,0 @@

10

lib/index.js

@@ -194,3 +194,6 @@ 'use strict';

const entryStart = new Date(entry.startedDateTime).getTime();
if (entryStart > pageTimings[entry.pageref].onLoad) {
if (
pageTimings[entry.pageref] &&
entryStart > pageTimings[entry.pageref].onLoad
) {
currentPage.afterOnLoad.requests += 1;

@@ -200,3 +203,6 @@ currentPage.afterOnLoad.transferSize += entry.response.bodySize;

}
if (entryStart > pageTimings[entry.pageref].onContentLoad) {
if (
pageTimings[entry.pageref] &&
entryStart > pageTimings[entry.pageref].onContentLoad
) {
currentPage.afterOnContentLoad.requests += 1;

@@ -203,0 +209,0 @@ currentPage.afterOnContentLoad.transferSize += entry.response.bodySize;

{
"name": "pagexray",
"version": "2.5.2",
"version": "2.5.3",
"description": "Xray your HAR file and know all about the page",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc