New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

har-online

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

har-online - npm Package Compare versions

Comparing version

to
0.2.0

11

har-online.js
var GitHubApi = require("github");
var github = new GitHubApi({

@@ -7,2 +6,3 @@ version: "3.0.0",

});
var url = require("url");

@@ -19,3 +19,3 @@ function harViewerJsonp(harObject) {

// Gists require a filename, so we use a timestamp
var filename = Date.now().toString();
var filename = Date.now().toString() + ".js";
var gistOptions = {

@@ -33,3 +33,8 @@ public: false,

var gist = res.files[filename].raw_url;
return cb(null, viewerUrl(gist));
// Use rawgit instead of direct GitHub link
// see https://stackoverflow.com/questions/17341122/link-and-execute-external-javascript-file-hosted-on-github
var rawgitUrl = url.parse(gist);
rawgitUrl.host = "cdn.rawgit.com";
var result = url.format(rawgitUrl);
return cb(null, viewerUrl(result));
}

@@ -36,0 +41,0 @@ });

{
"name": "har-online",
"version": "0.1.0",
"version": "0.2.0",
"description": "View HAR files at http://www.softwareishard.com/har/viewer/",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet