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

linkhub

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

linkhub - npm Package Compare versions

Comparing version 1.8.1 to 1.8.2

14

lib/TokenBuilder.js
var crypto = require("crypto");
var http_tls = require("https");
var http_request = require("http");
var request = require("sync-request");
var LINKHUB_API_VERSION = "2.0";

@@ -76,2 +75,3 @@

headers: headers,
timeout: 180 * 1000
};

@@ -107,2 +107,3 @@

},
timeout: 180 * 1000
};

@@ -144,2 +145,3 @@

},
timeout: 180 * 1000
};

@@ -184,2 +186,3 @@

},
timeout: 180 * 1000
};

@@ -291,4 +294,7 @@

try {
var response = request("GET", targetURL + "/Time");
return response.body.toString("utf8");
var XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;
var xhr = new XMLHttpRequest();
xhr.open('GET', targetURL + '/Time', false);
xhr.send();
return xhr.responseText
} catch (err) {

@@ -320,2 +326,2 @@ var errorHandler =

return url;
};
};
{
"name": "linkhub",
"version": "1.8.1",
"version": "1.8.2",
"description": "linkhub auth modules for www.linkhub.co.kr",

@@ -32,3 +32,3 @@ "author": "Kim Seongjun <pallet027@gmail.com>",

"dependencies": {
"sync-request": "^2.0.0"
"xmlhttprequest": "^1.8.0"
},

@@ -41,2 +41,2 @@ "preferGlobal": true,

}
}
}
# node-linkhub
링íŦ허브 node.js SDK v1.8.1
링íŦ허브 node.js SDK v1.8.2

@@ -8,2 +8,2 @@ ## Install

$ npm install linkhub
```
```
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