ticker-list

2.0.1 • Public • Published

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);
    }
})();

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.1
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.0.1
    1
  • 2.0.0
    0
  • 1.0.1
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i ticker-list

Weekly Downloads

1

Version

2.0.1

License

ISC

Unpacked Size

3.57 kB

Total Files

4

Last publish

Collaborators

  • bbbweb