2.0.1 • Published 3 years ago

ticker-list v2.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Fetch a full listing of stock tickers from https://stockanalysis.com/

Fetch a full listing of crypto tickers from https://coinmarketcap.com/

const {
    cryptos,
    stocks
} = require('./app');

(async () => {
    const stockTickers = await stocks();
    for (const ticker of stockTickers) {
        console.log(ticker);
    }
    const cryptoTickers = await cryptos();
    for (const crypto of cryptoTickers) {
        console.log(crypto);
    }
})();
2.0.1

3 years ago

2.0.0

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago