Home > database >  Is there any library of reactJS to scrap webpages ? I want some specific data from website in my rea
Is there any library of reactJS to scrap webpages ? I want some specific data from website in my rea

Time:12-22

I tried using nodejs its working but I want to do using reactJS only without node js, please let me know if any available there

CodePudding user response:

No, you won't be able to use the browser of your clients to scrape content from other websites using JavaScript because of a security measure called Same-origin policy. visit this post: browser-based-client-side-scraping

  • Related