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

bitstamp

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

bitstamp - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

11

bitstamp.js

@@ -26,2 +26,3 @@ var querystring = require("querystring");

Bitstamp.prototype._request = function(method, path, data, callback, args) {
var options = {

@@ -56,6 +57,16 @@ host: 'www.bitstamp.net',

});
req.on('error', function(err) {
callback(err);
});
req.on('socket', function (socket) {
socket.setTimeout(5000);
socket.on('timeout', function() {
req.abort();
});
});
req.end(data);
}

@@ -62,0 +73,0 @@

2

package.json
{
"name": "bitstamp",
"version": "0.1.3",
"version": "0.1.4",
"description": "Bitstamp REST API wrapper",

@@ -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