Antonhansel / feathers-coinapi

A Feathers service for CoinAPI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

feathers-coinapi

Unofficial Feathers plugin service for CoinAPI

Install

npm install feathers-coinapi --save

Documentation

Please refer to the CoinAPI Docs for options that can be passed.

Available Services

The following services are supported and map to the appropriate Stripe resource:

  • ExchangeRates
  • Metadata
  • OhlcvHistorical
  • OhlcvHistoricalAgg
  • OhlcvLatest
  • OhlcvLatestAgg
  • OrderbooksCurrent
  • OrderbooksHistorical
  • OrderbooksLatest
  • QuotesCurrent
  • QuotesLatest
  • TradesHistorical
  • TradesLatest

Complete Example

Here's an example of a Feathers server that uses coinapi.

const feathers = require("@feathersjs/feathers");
const plugin = require("feathers-coinapi");

// Initialize the application
const app = feathers();

// Initialize the plugin
app.configure(plugin());

License

Copyright (c) 2019

Licensed under the MIT license.

About

A Feathers service for CoinAPI

License:MIT License


Languages

Language:JavaScript 100.0%