![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
coin-ticker
Advanced tools
Wrapper for bitcoin exchange apis. The easiest way to add cryptocurrency market data into your application!
Easily get the latest exchange data of Bitcoin, Etherium, Litecoin, and other assets from a variety of exchanges including Bitfinex, Coinbase, Bitstamp, Kraken, Poloniex and others.
$ npm install coin-ticker
Require:
const coinTicker = require('coin-ticker');
Syntax:
coinTicker([exchange, assetPair])
Get available exchanges:
The coinTicker function with no arguments will return an array of all available exchanges
coinTicker()
// =>
// [
// 'bitfinex',
// 'coinbase',
// 'bitstamp',
// 'kraken',
// 'okcoin',
// 'exmo',
// 'bittrex',
// 'poloniex',
// 'bitcoinaverage',
// 'gdax',
// ]
Get available asset pairs by exchange:
Declare the exchange and use string 'pairs' to request available asset pairs. coinTicker will return a promise.
coinTicker('poloniex', 'pairs')
.then((pairs) => {
console.log(pairs);
})
// =>
// [
// 'BCN_BTC',
// 'BELA_BTC',
// 'BLK_BTC',
// 'BTCD_BTC',
// 'BTM_BTC',
// 'BTS_BTC',
// 'BURST_BTC',
// 'CLAM_BTC',
// 'DASH_BTC',
// 'DGB_BTC',
// 'DOGE_BTC',
// 'EMC2_BTC',
// 'FLDC_BTC',
// 'FLO_BTC',
// 'GAME_BTC',
// 'GRC_BTC',
// 'HUC_BTC',
// 'LTC_BTC',
// 'MAID_BTC',
// 'OMNI_BTC',
// ...
// ]
Get Ticker Data:
Simply declare the exchange and asset pair to get the latest market info. coinTicker will return a promise.
coinTicker('bitfinex', 'BTC_USD')
// => Promise
Response Data:
An object containing the following values:
{
last: // the last traded price
ask: // current ask
bid: // current bid
low: // 24 hour low
high: // 24 hour high
vol: // 24 hour volume
timestamp: // precise time
exchange: // the current exchange, i.e. 'bitfinex'
pair: // the asset pair, i.e. 'BTC_USD'
rawData: // the original, unformatted object received from the exchange api. Differs by exchange.
}
Example:
coinTicker('bitfinex', 'BTC_USD')
.then((tick) => {
console.log(tick)
})
// =>
// {
// last: '1034.8',
// ask: '1034.8',
// bid: '1034.7',
// low: '1001.6',
// high: '1040.0',
// vol: '15112.8733725',
// timestamp: '1486238356.227418953',
// exchange: 'bitfinex',
// pair: 'BTC_USD',
// rawData: { ... }
// }
If you find this package useful, please contribute by donating or opening a pull request.
BTC:
1Gr9UcXdM5Kmnseht2u29o1SsqMnBkTsYP
ETH:
0xc519a1904c5a9D99C13374d22388091B807c54cF
FAQs
Wrapper for bitcoin exchange apis. The easiest way to add cryptocurrency market data into your application!
The npm package coin-ticker receives a total of 32 weekly downloads. As such, coin-ticker popularity was classified as not popular.
We found that coin-ticker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.