Example
Since I have often built small web-scraper myself using Integromat/Make, I have now also added the library cheerio. So now you can easily build your scraper without any further services. Also the axios http request library is available.
{"content":"<h2 class='title'>Hello World</h2>"}
const $ = cheerio.load(input.content);$('h2.title').text();
{ output: 'Hello World' }
const $ = cheerio.load((await axios.get('https://www.google.de/')).data);$('head title').text();
{ output: 'Google' }