web-scrape/index.js

16 lines
315 B
JavaScript
Raw Permalink Normal View History

2023-04-11 18:21:08 +00:00
import fetch from 'node-fetch';
2023-04-11 18:41:01 +00:00
import * as cheerio from 'cheerio';
2023-04-11 18:21:08 +00:00
const url = "https://en.wikipedia.org/wiki/List_of_Presidents_of_the_United_States";
const response = await fetch(url);
const body = await response.text();
2023-04-11 19:25:55 +00:00
const $ = cheerio.load(body);
let data = $(".wikitable");
2023-04-11 19:25:55 +00:00
console.log(data.html());