There is a way in React to do web scraping without using a server that takes care of this.
I would like to use only React.
I was trying to use casperjs but it seems to give me problems on react when I set it, it can't find the module.
There is a way in React to do web scraping without using a server that takes care of this.
I would like to use only React.
I was trying to use casperjs but it seems to give me problems on react when I set it, it can't find the module.
As i understand, web scraping is process of gathering information (not data), from web pages.
Short answer: It is not always possible because of cross site scripting.
Long answer: The problem of gathering usefull information from pages with other domain name is that, server that serves specific domain have to explicitly define that allow you to get information from that server(technically not exactly, but for simplicity it is true). Mostly web servers, try to reduce list of allowed domain names, because this is security issue.
you have to use a server in order to do scraping in react. if you are using python or any other language you can do it via console.