Unofficial Feathers plugin service for CoinAPI
npm install feathers-coinapi --save
Please refer to the CoinAPI Docs for options that can be passed.
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
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());
Copyright (c) 2019
Licensed under the MIT license.