We have a Node.js server doing some HTML scraping (looking for images). Right now we use the Cheerio NPM module to create a virtual DOM from the HTML we retrieve from requests and then traverse with jQuery on the server.
However I was wondering if there is a way to do this with React since it does serverside rendering. Is React able to create a traversable virtual DOM from an HTML string?