1.0.1 • Published 1 year ago
@moises-herrera/stock-market-scraper v1.0.1
Stock Market Web Scraper
Reusable stock web scraper to get the information about the price of an asset from es.investing.com
Install
npm install @moises-herrera/stock-market-scraperExample
import stockMarketScraper from '@moises-herrera/stock-market-scraper';
async function bootstrap() {
try {
const eurUsdPrice = await stockMarketScraper.getPrice(
'currencies',
'eur/usd' // Using a valid pair from es.investing.com
);
} catch (error) {
console.error(error);
}
}