python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to scrape Yahoo Finance with Cheerio in Javascript?
I'm trying to pull a real time price from Yahoo Finance, based on an old post, and the latest price attribute (data-reactid="47") seen in Yahoo Finance. But the following code doesn't extra...

Newbie
Votes: 0
Answers: 1
How can I return all data from different scope and receive them?
I tried to scrape a website using Node.JS + Cheerio + Axios, I've get all the things I need, but the problem is I don't know how to return the data from different scopes to receive it (I can only rece...
Bunny
Votes: 0
Answers: 1
Why do i see escape sequence characters in the parse output for cheerio?
Attached below is my code:-
app.get("/techcrunch", (req, res) => {
axios("https://techcrunch.com/")
.then((response) => {
const html = response.data;
...
jeremy
Votes: 0
Answers: 0
How to create a session in axios
I am trying to log in to a website using forms data payload. It requires a _csrf token which is uniquely generated every time the login page opens up. I was trying to get to the login page to take the...

Sumit Jaiswal
Votes: 0
Answers: 0