Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/johnayoung/feathers-coinapi
A Feathers service for CoinAPI
https://github.com/johnayoung/feathers-coinapi
Last synced: 3 months ago
JSON representation
A Feathers service for CoinAPI
- Host: GitHub
- URL: https://github.com/johnayoung/feathers-coinapi
- Owner: johnayoung
- License: mit
- Created: 2019-12-05T20:30:43.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-10T20:54:12.000Z (over 3 years ago)
- Last Synced: 2024-05-18T21:54:59.321Z (6 months ago)
- Language: JavaScript
- Size: 7.62 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/contributing.md
- License: LICENSE
Awesome Lists containing this project
- awesome-feathersjs - feathers-coinapi - Query the [CoinAPI](https://docs.coinapi.io) API through FeathersJS (Plugins / APIs)
README
# feathers-coinapi
> **Unofficial** Feathers plugin service for CoinAPI
## Install
```
npm install feathers-coinapi --save
```## Documentation
Please refer to the [CoinAPI Docs](https://docs.coinapi.io/) 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`.
```js
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](LICENSE).