New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

bitstamp-api

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitstamp-api

Bitstamp API Client for Node.JS

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

Bitstamp API Client

bitstamp-api is a simple wrapper for communicating with BitStamp in Node.JS.

Installation

npm install bitstamp-api

Usage

var Bitstamp = require('bitstamp-api');
var api = new Bitstamp();

api.transactions({time: 'minute'}, function(err, result) {
  if(!err) {
    console.log(result);
  } else {
    console.log(err);
  }
});

Dependencies

  • underscore
  • request

FAQ

  • Q: I often receive invalid nonce / invalid signature errors, how do I fix that?
  • A: Generate a new API key on the Bitstamp website.

Keywords

bitstamp

FAQs

Package last updated on 03 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts