Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 968 Bytes

README.md

File metadata and controls

52 lines (36 loc) · 968 Bytes

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.