Comparing version
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
27107
29.05%75
8.7%35
2.94%