0.0.5 • Published 8 years ago

bitcoin-de-api v0.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

bitcoin-de-api

A (very) simple Node.js wrapper for the (very) simple bitcoin.de api.

NPM

Install

npm install --save bitcoin-de-api

Run tests

npm run test

Test runs will have different outputs depending on whether or not an API_KEY was set in .env (see 'Usage' below).

Usage

Create a .env file at the root of your project and add your API_KEY:

API_KEY=your_api_key_goes_here_without_quotes

Add .env to your .gitignore file! Don't publish your secrets! See dotenv for more information.

const api = require('bitcoin-de-api')
const dotenv = require('dotenv')

dotenv.config() // parses .env and sets environnment variables
const apiKey = process.env.API_KEY

api.getTrades(apiKey, since) // since parameter is optional
  .then(data => {
    // do stuff with the data here
    console.log(data)
  })
  .catch( err => {
    console.error(err)
  })

API

methodreturns
getTrades()promise
getOrderBook()promise
getRate()promise

Copyright and license

Copyright 2016 Matthias Munder.
Licensed under the MIT license.

js-standard-style

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago